Skip to content

Instantly share code, notes, and snippets.

@ivanoats
Created August 14, 2014 21:19
Show Gist options
  • Save ivanoats/729016b732b3d11d9de7 to your computer and use it in GitHub Desktop.
Save ivanoats/729016b732b3d11d9de7 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
setTimeout(function() { console.log("i is " + i); }, 1000)
}
console.log('done, i is: ' + i);
for (var i = 0; i < 10; i++) {
(function(j) {
setTimeout(function() { console.log("j is " + j); }, 1000)
})(i);
}
console.log('done, i is: ' + i);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment