Last active
April 6, 2016 19:12
-
-
Save codemilli/dff11747c997c75da057ca4dfdb19eca 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
| var a = 'hacker'; // a = 'hacker' | |
| var a = 'moon'; // a = 'moon' | |
| let b = 'hacker'; // b = 'hacker' | |
| let b = 'pinky'; // Identifier 'b' has already been declared |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment