javascript interval time code example

Example 1: jquery call function every second

setInterval(function(){ 
    //this code runs every second 
}, 1000);

Example 2: javascript setinterval

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

Example 3: javascript set timeout

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

Example 4: setinterval javascript

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