Skip to content

Instantly share code, notes, and snippets.

@bmf
Created June 17, 2016 16:41
Show Gist options
  • Save bmf/8e3efee259c6d172f88f6628927a7254 to your computer and use it in GitHub Desktop.
Save bmf/8e3efee259c6d172f88f6628927a7254 to your computer and use it in GitHub Desktop.
console.log(x) //undefined
var x = "cheeseburger";
/*gets run by the interpreter as... */
var x;
console.log(x); //undefined
x = "cheeseburger";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment