-
-
Save wilk/73d6f7dae7f8182f7f2e to your computer and use it in GitHub Desktop.
ES6 let
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
for (let i = 0; i < 10; i++) { | |
console.log(i) // 0 1 2 3 ... 9 | |
} | |
console.log(i) // ReferenceError: i is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment