Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created September 15, 2017 15:56
Show Gist options
  • Save akopcz2/104b6fcc26d9642f2d0f62c05277093d to your computer and use it in GitHub Desktop.
Save akopcz2/104b6fcc26d9642f2d0f62c05277093d to your computer and use it in GitHub Desktop.
set timeout within for loop
let canvas = document.getElementById("canvas");
for (let i = 0; i < 1000; i++) {
(function(i) {
setTimeout(
function() {
canvas.click();
},
100 + (50 * i));
})(i);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment