Answers for "javascript repeat function every x seconds"

7

javascript call function every second

setInterval(function(){ 
    //this code runs every second 
}, 1000);
Posted by: Guest on August-01-2019
1

javascript run every 5 seconds

const interval = setInterval(function() {
   // method to be executed;
 }, 5000);

clearInterval(interval); // thanks @Luca D'Amico
Posted by: Guest on September-27-2020
2

js do every x seconds

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

js loop every x seconds

(function loop() {
  setTimeout(function () {
    // execute script
    loop()
  }, 9000); //9000 = 9000ms = 9s
}());
Posted by: Guest on November-09-2020
0

repeat x times js

The code below is written using ES6 syntaxes but could just as easily be written in ES5 or even less. ES6 is not a requirement to create a "mechanism to loop x times"

If you don't need the iterator in the callback, this is the most simple implementation

const times = x => f => {
  if (x > 0) {
    f()
    times (x - 1) (f)
  }
}

// use it
times (3) (() => console.log('hi'))

// or define intermediate functions for reuse
let twice = times (2)

// twice the power !
twice (() => console.log('double vision'))
Posted by: Guest on March-18-2021

Code answers related to "javascript repeat function every x seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language