Created
June 17, 2016 16:41
-
-
Save bmf/8e3efee259c6d172f88f6628927a7254 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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