Skip to content

Instantly share code, notes, and snippets.

@adatta02
Last active February 8, 2019 03:34
Show Gist options
  • Save adatta02/5ecd91f20c438584030a1fd1999cb812 to your computer and use it in GitHub Desktop.
Save adatta02/5ecd91f20c438584030a1fd1999cb812 to your computer and use it in GitHub Desktop.
let k = "";
for(let i = 0; i < 5; i++){
setTimeout(() => {
console.log("k was " + k);
k = "hi".repeat(1 + i);
}, 1000 * i);
};
setInterval(() => {
console.log("k is = " + k);
}, 500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment