set intervall javascript code example
Example 1: javascript settimeout
setTimeout(function(){ alert("Hello"); }, 3000);
Example 2: javascript setinterval
setInterval(function(){
console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds