Skip to content

Instantly share code, notes, and snippets.

@wilk
Created July 1, 2015 20:36
Show Gist options
  • Save wilk/73d6f7dae7f8182f7f2e to your computer and use it in GitHub Desktop.
Save wilk/73d6f7dae7f8182f7f2e to your computer and use it in GitHub Desktop.
ES6 let
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