Skip to content

Instantly share code, notes, and snippets.

@faux-pas
Created July 3, 2017 12:44
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 faux-pas/bfd5e46c347bb4a6eb429bc641123d39 to your computer and use it in GitHub Desktop.
Save faux-pas/bfd5e46c347bb4a6eb429bc641123d39 to your computer and use it in GitHub Desktop.
//Prints 1 to 5
for (var i=1; i<=5; i++) {
console.log(i);
}
//prints 6 five times
for (var i=1; i<=5; i++) {
setTimeout( function timer(){
console.log( i );
}, i*1000 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment