TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements4.js

10 lines
211 B
JavaScript

//// [functionWithDefaultParameterWithNoStatements4.ts]
function foo(a = ``) { }
function bar(a = ``) {
}
//// [functionWithDefaultParameterWithNoStatements4.js]
function foo(a) { }
function bar(a) {
}