Answers for "set time intrval to check in each second"

2

js do every x seconds

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

how to do a function after a set interval js

function sayHi() {
  alert('Hello');
}
//Do a function at a set interval continuously
setTimeout(sayHi, 1000);
//Do a function once after a set interval
setTimeout(sayHi, 1000);
Posted by: Guest on October-15-2020

Code answers related to "set time intrval to check in each second"

Code answers related to "Javascript"

Browse Popular Code Answers by Language