Skip to content

Instantly share code, notes, and snippets.

@chebykin
Last active November 29, 2016 14:28
Show Gist options
  • Save chebykin/19c936d1301e6dfefa58853156e64cd8 to your computer and use it in GitHub Desktop.
Save chebykin/19c936d1301e6dfefa58853156e64cd8 to your computer and use it in GitHub Desktop.
js closure inside loop
for(var i = 0; i < 10; i++) {
setTimeout(function() {
console.log(i);
}, 10);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment