TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements3.js

11 lines
211 B
JavaScript
Raw Normal View History

//// [functionWithDefaultParameterWithNoStatements3.ts]
function foo(a = "") { }
function bar(a = "") {
}
//// [functionWithDefaultParameterWithNoStatements3.js]
function foo(a) { }
function bar(a) {
}