Skip to content

Instantly share code, notes, and snippets.

@andineck
Created March 16, 2015 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andineck/7f24ef7a9bf0c24c31b9 to your computer and use it in GitHub Desktop.
Save andineck/7f24ef7a9bf0c24c31b9 to your computer and use it in GitHub Desktop.
variable shadowing
var a = 1;
//undefined
function showA () { var a = 2; console.log(a);}
//undefined
a
//1
showA()
//2
a
//1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment