Skip to content

Instantly share code, notes, and snippets.

@2012mjm
Created July 26, 2019 12:39
Show Gist options
  • Select an option

  • Save 2012mjm/75267606418fb8b3a7b025a7a232f40a to your computer and use it in GitHub Desktop.

Select an option

Save 2012mjm/75267606418fb8b3a7b025a7a232f40a to your computer and use it in GitHub Desktop.
for (var i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 1);
}
for (let i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment