TypeScript/tests/baselines/reference/functionWithDefaultParameterWithNoStatements9.js

11 lines
229 B
JavaScript
Raw Normal View History

//// [functionWithDefaultParameterWithNoStatements9.ts]
function foo(a = console.log) { }
function bar(a = console.log) {
}
//// [functionWithDefaultParameterWithNoStatements9.js]
function foo(a) { }
function bar(a) {
}