Skip to content

Instantly share code, notes, and snippets.

@LearningMaterial
Created February 22, 2018 20:24
Show Gist options
  • Save LearningMaterial/d813c359a46fae49493c83c6d9e7c08f to your computer and use it in GitHub Desktop.
Save LearningMaterial/d813c359a46fae49493c83c6d9e7c08f to your computer and use it in GitHub Desktop.
for (var i = 0; i < 10; i++) {
(function () {
var currentValueOfI = i;
setTimeout(() => {
console.log(`The number is ${currentValueOfI}`);
}, 1000);
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment