TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements8.js

11 lines
225 B
JavaScript
Raw Normal View History

//// [functionWithDefaultParameterWithNoStatements8.ts]
function foo(a = undefined) { }
function bar(a = undefined) {
}
//// [functionWithDefaultParameterWithNoStatements8.js]
function foo(a) { }
function bar(a) {
}