Skip to content

Instantly share code, notes, and snippets.

@SharpEdgeMarshall
Created September 5, 2016 08:36
Show Gist options
  • Save SharpEdgeMarshall/040cb8eb58c9955397ebaf8feaf26bfd to your computer and use it in GitHub Desktop.
Save SharpEdgeMarshall/040cb8eb58c9955397ebaf8feaf26bfd to your computer and use it in GitHub Desktop.
var count = 0;
for ( var i = 0; i < 4; i++ ){
setTimeout(function(){
console.log(i==count++);
}, i * 200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment