Skip to content

Instantly share code, notes, and snippets.

@bvenkatr
Created March 31, 2016 06:39
Show Gist options
  • Save bvenkatr/363daa9a9524e9ef1afff3470e27b4ea to your computer and use it in GitHub Desktop.
Save bvenkatr/363daa9a9524e9ef1afff3470e27b4ea to your computer and use it in GitHub Desktop.
var numbers = [1,2,3,4,5];
for(var i in numbers){
(function(){
var j = i;
setTimeout(function(){
console.log(j);
}, 2000);
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment