How would I control the interval that a for loop runs at?
For instance
for (i=0;i<5;i++) {
//do stuff
}
But I want the for loop to run every 60ms, not ASAP. Kinda like how setInterval
works.
How would I control the interval that a for loop runs at?
For instance
for (i=0;i<5;i++) {
//do stuff
}
But I want the for loop to run every 60ms, not ASAP. Kinda like how setInterval
works.
-
1
if you want it to work like
setInterval
usesetInterval
itself!! – Vivek Chandra Commented Feb 21, 2012 at 18:29
1 Answer
Reset to default 9var interval, i = 0;
function dostuff() {
/* ... logic ... */
if(i < 5) i++;
else clearInterval(interval);
}
interval = setInterval(dostuff, 60);