Answers for "set timeInterval"

28

javascript settimeout

setTimeout(function(){ alert("Hello"); }, 3000);
Posted by: Guest on September-13-2019
15

js setinterval

function func(){
  console.log("Ran")
}
setInterval(func,1000)//Runs the "func" function every second
Posted by: Guest on March-07-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 "Javascript"

Browse Popular Code Answers by Language