Skip to content

Instantly share code, notes, and snippets.

@tilleps
Created January 3, 2020 08:51
Show Gist options
  • Save tilleps/316682e036aa73af3cedb14464a30321 to your computer and use it in GitHub Desktop.
Save tilleps/316682e036aa73af3cedb14464a30321 to your computer and use it in GitHub Desktop.
Require parameters for Javascript: https://davidwalsh.name/javascript-function-parameters
function test(a = foo(arguments)) {
console.log(a, typeof a);
}
function foo(args) {
console.log('foo', args)
}
console.log(test(undefined, undefined, undefined));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment