Answers for "set an interval js"

104

javascript setinterval

setInterval(function(){ 
	console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds
Posted by: Guest on June-27-2019
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