Skip to content

Instantly share code, notes, and snippets.

Created May 30, 2012 12:59
Show Gist options
  • Save anonymous/2836165 to your computer and use it in GitHub Desktop.
Save anonymous/2836165 to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
process.nextTick(function () { console.log(i); });
}
// Prints 10 x 10 times
// I want it to print 1 - 10 without using an external array to store i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment