Skip to content

Instantly share code, notes, and snippets.

@joshblack
Created October 18, 2014 04:52
Show Gist options
  • Save joshblack/e831833a1e10381ae8f7 to your computer and use it in GitHub Desktop.
Save joshblack/e831833a1e10381ae8f7 to your computer and use it in GitHub Desktop.
function foo() {
console.log(x); // undefined
var x = 1;
console.log(x); // 1
};
// What actually happens under the hood
function foo() {
var x;
console.log(x); // undefined
x = 1;
console.log(x); // 1
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment