set interval in js code example

Example 1: javascript setinterval

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

Example 2: js settimeout

setTimeout(() => { alert('Hello') }, 1000)

Example 3: javascript settimeout

setTimeout(function(){
 	console.log("hello");
}, 3000); //wait for atleast  3 seconds before console logging

Example 4: javascript setinterval

setInterval(function() {
  //Your code
}, 1000); //Every 1000ms = 1sec

Example 5: setinterval javascript

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

Example 6: javascript setinterval

setInterval(function(){ 
	console.log("print this once every 3 second");
}, 3000);//run this thang every 3 seconds