1setInterval(function(){
2 console.log("Oooo Yeaaa!");
3}, 2000);//run this thang every 2 seconds
1function func(){
2 console.log("Ran")
3}
4setInterval(func,1000)//Runs the "func" function every second
1setInterval(function(){
2 console.log("print this once every 3 second");
3}, 3000);//run this thang every 3 seconds