Skip to content

Instantly share code, notes, and snippets.

@alexshelkov
Created February 3, 2022 15:27
Show Gist options
  • Save alexshelkov/47afa09fce8b9cae835af197fa99aa92 to your computer and use it in GitHub Desktop.
Save alexshelkov/47afa09fce8b9cae835af197fa99aa92 to your computer and use it in GitHub Desktop.
for (let i = 0; i < 3; i++) {
setTimeout(() => {
console.log(i);
}, i * 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment