Answers for "how to make a setinterval node"

4

setinterval nodejs

setInterval(function () {
    console.log("Every 5 secondes"); 
}, 5000); 
console.log("now");
Posted by: Guest on April-03-2020
18

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 make a setinterval node"

Code answers related to "Javascript"

Browse Popular Code Answers by Language