Skip to content

Instantly share code, notes, and snippets.

@mariusGundersen
Created February 4, 2013 08:25
Show Gist options
  • Save mariusGundersen/4705611 to your computer and use it in GitHub Desktop.
Save mariusGundersen/4705611 to your computer and use it in GitHub Desktop.
What does whatIsA return? 7 or 5 (or something else)
var a = 5;
function whatIsA() {
if(a == undefined) {
var a = 7;
}
return a;
}
whatIsA()//is it 5 or 7?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment