Skip to content

Instantly share code, notes, and snippets.

@ahmadajmi
Created March 30, 2011 07:27
Show Gist options
  • Save ahmadajmi/894003 to your computer and use it in GitHub Desktop.
Save ahmadajmi/894003 to your computer and use it in GitHub Desktop.
undefined parameters
var foo;
foo; // return undefined
function bar(x){
return x;
}
bar(); // return undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment