Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created May 18, 2017 13:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenafaure/acf87572c7514da00bbcc1a083d4f2d0 to your computer and use it in GitHub Desktop.
Save lenafaure/acf87572c7514da00bbcc1a083d4f2d0 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
console.log(i);
setTimeout(function() {
console.log(i);
}, i*1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment