javascript periodic timer code example
Example 1: javascript setinterval
setInterval(function(){
console.log("Oooo Yeaaa!");
}, 2000);//run this thang every 2 seconds
Example 2: javascript set timeout
setTimeout(function(){
console.log("hello");
}, 3000); //wait for atleast 3 seconds before console logging