Answers for "how to use timeout function in javascript"

15

js setinterval

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

Code answers related to "how to use timeout function in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language