Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created May 18, 2017 13:32
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/f56330d769c1dd4f506b9e0e43b1ecc0 to your computer and use it in GitHub Desktop.
Save lenafaure/f56330d769c1dd4f506b9e0e43b1ecc0 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
(function (j) {
setTimeout(function() {
console.log(j);
}, j*1000);
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment