Answers for "js time inerval"

15

js setinterval

function func(){
  console.log("Ran")
}
setInterval(func,1000)//Runs the "func" function every second
Posted by: Guest on March-07-2020
4

javascript setinterval

setInterval(function() {
  //Your code
}, 1000); //Every 1000ms = 1sec
Posted by: Guest on May-22-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language