Skip to content

Instantly share code, notes, and snippets.

@Omar-Gonzalez
Last active October 30, 2017 17:29
Show Gist options
  • Save Omar-Gonzalez/22bd4be96a291388a2d406417756eb36 to your computer and use it in GitHub Desktop.
Save Omar-Gonzalez/22bd4be96a291388a2d406417756eb36 to your computer and use it in GitHub Desktop.
function forTest(val){
console.log("Val test in forTest() "+val);
}
for(var i = 0; i < 10; i++){
(function(i){
setTimeout(function(){
forTest(i)
},i*100)
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment