Answers for "dio we have setInterval in javascript"

7

jquery call function every second

setInterval(function(){ 
    //this code runs every second 
}, 1000);
Posted by: Guest on August-01-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

Code answers related to "Javascript"

Browse Popular Code Answers by Language