Skip to content

Instantly share code, notes, and snippets.

@alpersilistre
Created February 14, 2016 23:54
Show Gist options
  • Save alpersilistre/f45147fee57ecbf6335c to your computer and use it in GitHub Desktop.
Save alpersilistre/f45147fee57ecbf6335c to your computer and use it in GitHub Desktop.
IIFE inside for loop
for(var i = 0; i < jsonObj.length ; i++){
(function(i) {
imdb.getImdbInfo(jsonObj[i].imdbId).then(function (data) {
console.log('done ' + i);
jsonObj[i].title = data.Title;
});
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment