Answers for "how to call a function in every x seconds in javascript"

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
0

js every x seconds

// your function
function myTimer() {
    console.log(' each 1 second...');
}

var myVar = setInterval(myTimer, 1000); //setting the loop with time interval

clearInterval(myVar); //call this line to stop the loop
Posted by: Guest on May-26-2021

Code answers related to "how to call a function in every x seconds in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language