Skip to content

Instantly share code, notes, and snippets.

@ando19721226
Created August 9, 2012 04:09
Show Gist options
  • Save ando19721226/3300865 to your computer and use it in GitHub Desktop.
Save ando19721226/3300865 to your computer and use it in GitHub Desktop.
hoisting
var foo = 'bar';
(function () {
if (false) {
var foo = 'BAZ';
}
alert(foo); // -> undefined
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment