Skip to content

Instantly share code, notes, and snippets.

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