Last active
April 6, 2016 18:53
-
-
Save codemilli/41d2cc0b9edb92791746b455f0fb0461 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
if (true) { | |
var a = 'hacker'; | |
let b = 'moon'; | |
console.log('a => ', a); // hacker | |
console.log('b => ', b); // moon | |
} | |
console.log('a => ', a); // hacker | |
console.log('b => ', b); // b is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment