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

7

javascript call function every second

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

js do every x seconds

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

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language