Last active
July 27, 2019 12:33
-
-
Save AliN11/23173f2aa79c3b873be8097e2da95477 to your computer and use it in GitHub Desktop.
This file contains 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
// These two lines: | |
console.log(y); // undefined | |
y = "Street"; | |
// are interpreted as: | |
var y; | |
console.log(y); // undefined | |
y = "Street"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment