Skip to content

Instantly share code, notes, and snippets.

@fsvehla
Created April 7, 2011 12:50
Show Gist options
  • Save fsvehla/907711 to your computer and use it in GitHub Desktop.
Save fsvehla/907711 to your computer and use it in GitHub Desktop.
for(idx = 0; idx < 8; idx++) {
var callback = function () {
var index = idx;
return function() {
console.log(index);
}
}();
setTimeout(callback, 5);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment