Answers for "javascript do function every 10 seconds"

7

javascript call function every second

setInterval(function(){ 
    //this code runs every second 
}, 1000);
Posted by: Guest on August-01-2019
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 "javascript do function every 10 seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language