Skip to content

Instantly share code, notes, and snippets.

@ortichon
Created May 19, 2017 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ortichon/fce772b1096663a67451dbe01eaa2cdd to your computer and use it in GitHub Desktop.
Save ortichon/fce772b1096663a67451dbe01eaa2cdd to your computer and use it in GitHub Desktop.
JavaScript Interview Question #3
for (var i = 0; i < 10; i++) {
setTimeout(function() { console.log(i); }, 100 * i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment