Skip to content

Instantly share code, notes, and snippets.

@chrislaughlin
Created January 2, 2017 22:11
Show Gist options
  • Save chrislaughlin/2f662e27a57713f620894996cc0e2253 to your computer and use it in GitHub Desktop.
Save chrislaughlin/2f662e27a57713f620894996cc0e2253 to your computer and use it in GitHub Desktop.
function scope
for (var i = 0; i < 5; i++) {
setTimeout(function () {
console.log(i);
}, 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment