Skip to content

Instantly share code, notes, and snippets.

@gsans
Created November 28, 2014 11:10
Show Gist options
  • Save gsans/90f7174eb63e1cf8ba98 to your computer and use it in GitHub Desktop.
Save gsans/90f7174eb63e1cf8ba98 to your computer and use it in GitHub Desktop.
function fixed() {
for ( var i = 0; i < 5; i++ ) {
console.log(“Delay: “, i*100);
(function(safe_i) {
setTimeout(function() {
console.log(“i:”, safe_i)
}, i * 100 );
}) (i);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment