Skip to content

Instantly share code, notes, and snippets.

@shuding
Created January 22, 2016 09:51
Show Gist options
  • Save shuding/7f797947597c7f0aac83 to your computer and use it in GitHub Desktop.
Save shuding/7f797947597c7f0aac83 to your computer and use it in GitHub Desktop.
setTimeout with scope
for (var i = 0; i < 3; ++i) { setTimeout(function () { console.log(i); }, 1000 * i); }
for (var i = 0; i < 3; ++i) { setTimeout(function (i) { console.log(i); }, 1000 * i, i); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment