Skip to content

Instantly share code, notes, and snippets.

@alexshelkov
Last active February 15, 2022 04:41
Show Gist options
  • Save alexshelkov/4a248d8824e4bd8b26ccc9e5fa41f916 to your computer and use it in GitHub Desktop.
Save alexshelkov/4a248d8824e4bd8b26ccc9e5fa41f916 to your computer and use it in GitHub Desktop.
var i; // 'i' was declared with functional scope,
// so its declaration moved to the top of the file
for (i = 0; i < 3; i++) {
setTimeout(() => { // timeout callback
console.log(i);
}, i * 1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment