scottiestech.info
JavaScript Fun: Looping with a Delay | Scottie's Tech.Info
If you've ever programmed something in JavaScript, you most likely ran into a situation where you needed a delay. Normally, we do this with setTimeout(). For repeatedly calling some function every X milliseconds, one would normally use setInterval(). Well, that's fine. But what if you want to so something 10 times, and delay 3 seconds