settimeout setinterval code example

Example 1: javascript setinterval

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

Example 2: javascript setinterval

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

Example 3: javascript set timeout

var timeToWait = 3000; // 1000 = 1 second
setTimeout(() => {
	console.log("Text printed after 3 seconds");
}, timeToWait);

Example 4: how to do a function after a set interval js

function sayHi() {
  alert('Hello');
}
//Do a function at a set interval continuously
setTimeout(sayHi, 1000);
//Do a function once after a set interval
setTimeout(sayHi, 1000);