Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created May 18, 2017 13:30
Show Gist options
  • Save lenafaure/d4ddb8c442dfbe2c7c69fb48f3caf608 to your computer and use it in GitHub Desktop.
Save lenafaure/d4ddb8c442dfbe2c7c69fb48f3caf608 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
function timer(j) {
setTimeout(function() {
console.log(j);
}, j*1000);
};
timer(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment