Skip to content

Instantly share code, notes, and snippets.

@davidbalbert
Created August 2, 2017 18:06
Show Gist options
  • Select an option

  • Save davidbalbert/2c49ecd68056cc442f54b455207634ec to your computer and use it in GitHub Desktop.

Select an option

Save davidbalbert/2c49ecd68056cc442f54b455207634ec to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {}
i // => 10
for (let j = 0; j < 10; j++) {}
j // Uncaught ReferenceError: j is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment