Skip to content

Instantly share code, notes, and snippets.

@JoeChapman
Created March 28, 2012 09:02
Show Gist options
  • Select an option

  • Save JoeChapman/2224922 to your computer and use it in GitHub Desktop.

Select an option

Save JoeChapman/2224922 to your computer and use it in GitHub Desktop.
The affects of hoisting
var a = 1,
fn = function () {
alert(a);
var a = 10;
};
// a is undefined when alerted!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment