Skip to content

Instantly share code, notes, and snippets.

@night-fury-rider
Created June 24, 2020 04:04
Show Gist options
  • Select an option

  • Save night-fury-rider/bb32be48a600be679bd0596169258126 to your computer and use it in GitHub Desktop.

Select an option

Save night-fury-rider/bb32be48a600be679bd0596169258126 to your computer and use it in GitHub Desktop.
Closure inside loop
for(var i=0; i<5; i++) {
(function (i){
setTimeout(function() {
console.log(i);
}, 0);
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment