Skip to content

Instantly share code, notes, and snippets.

@bdotdub
Created July 31, 2011 01:36
Show Gist options
  • Save bdotdub/1116243 to your computer and use it in GitHub Desktop.
Save bdotdub/1116243 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; ++i) {
var callback = function(num) {
return function() {
console.log(num);
}
}
setTimeout(callback(i), i * 1000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment