Answers for "setinterval used often?"

2

js do every x seconds

window.setInterval(function() {
  // do stuff
}, 1000); // 1000 milliseconds (1 second)
Posted by: Guest on March-08-2020
0

javascript interval fixed number of times

// This will be repeated 5 times with 1 second intervals:
setIntervalX(function () {
    // Your logic here
}, 1000, 5);
Posted by: Guest on August-06-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language