Created
September 15, 2017 15:56
-
-
Save akopcz2/104b6fcc26d9642f2d0f62c05277093d to your computer and use it in GitHub Desktop.
set timeout within for loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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