Skip to content

Instantly share code, notes, and snippets.

@alessioalex
Created November 22, 2014 09:12
Show Gist options
  • Save alessioalex/0df763a851b3d039cceb to your computer and use it in GitHub Desktop.
Save alessioalex/0df763a851b3d039cceb to your computer and use it in GitHub Desktop.
settimeout-example.js
var log = function(i) {
console.log(i);
}
function tellMeLater() {
for (var i = 0; i < 10; i++) {
setTimeout(log.bind(null, i), 100);
}
}
tellMeLater();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment