-
-
Save micmath/3286503 to your computer and use it in GitHub Desktop.
Chapter 1
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
function main() { | |
var count = 0; | |
} | |
console.log(count); // undefined |
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
var count = 1; | |
function main() { | |
var count = 0; | |
} | |
console.log(count); // 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment