Skip to content

Instantly share code, notes, and snippets.

@mikeplavsky
Created March 22, 2019 15:47
Show Gist options
  • Save mikeplavsky/6f58822bfce6a2b6dc660b4bf1ea33f5 to your computer and use it in GitHub Desktop.
Save mikeplavsky/6f58822bfce6a2b6dc660b4bf1ea33f5 to your computer and use it in GitHub Desktop.
(function run(){
for(var i=0; i<5; i++){
setTimeout(function log(){
console.log(i);
}, 100);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment