Created
October 4, 2018 12:02
-
-
Save devarajchidambaram/6bea371f3e70e4f26073debccb1f19aa to your computer and use it in GitHub Desktop.
closure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const arr = [10, 12, 15, 21]; | |
for (var i = 0; i < arr.length; i++) { | |
(function(i){ | |
setTimeout(function() { | |
console.log('The index of this number is: ' + i); | |
}, 3000); | |
})(i) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment