Skip to content

Instantly share code, notes, and snippets.

@STRML
Created July 21, 2012 01:47
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 STRML/3154212 to your computer and use it in GitHub Desktop.
Save STRML/3154212 to your computer and use it in GitHub Desktop.
Variable declaration hoisting
(function foo(){bar = 10; var bar = 20;}());
alert(bar) // ReferenceError: bar is not defined
(function foo(){bar = 10;}());
alert(bar) // 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment