Published
- 1 min read
js timer loop
The solution for this is noted below
js timer loop
Solution
setInterval(myMethod, 5000)
function myMethod() {
//this will repeat every 5 seconds
//you can reset counter here
}
Try other methods by searching on the site. That is if this doesn’t work