how to use setinterval in javascript code example

Example 1: javascript setinterval

setInterval(function(){ 
	console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds

Example 2: js setinterval

function func(){
  console.log("Ran")
}
setInterval(func,1000)//Runs the "func" function every second

Example 3: setinterval javascript

setInterval(function(){
  console.log("Hello");
  console.log("World");
}, 2000); //repeat every 2s

Example 4: js setinterval

setInterval(function(){ alert("Hello"); }, 3000);

Tags:

Java Example