Skip to content

Instantly share code, notes, and snippets.

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