Created
September 14, 2017 21:27
-
-
Save dested/852c8c32d5cce59f7a7d468f86c38b44 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
let a = 1; | |
if (a == 1) { | |
let a = 2; | |
console.log(a); | |
} | |
console.log(a); | |
let b = 1; | |
if (a == 1) { | |
let b = b; | |
console.log(b); | |
} | |
console.log(b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment