Skip to content

Instantly share code, notes, and snippets.

@aaronfrost
Created February 10, 2015 22:07
Show Gist options
  • Save aaronfrost/0451cb0c23b2fcb3995f to your computer and use it in GitHub Desktop.
Save aaronfrost/0451cb0c23b2fcb3995f to your computer and use it in GitHub Desktop.
Default Questions
var x = "INIT";
function test(a = x) {
var x;
return a;
}
console.log( test() ); //undefined or 'INIT'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment