I'm going to be executing lot's of setIntervals, there's a way to make it more efficient; but that's down the road.
Is there a way I can do this?
var a = setInterval(function(a){
console.log(a);
clearInterval(a);
}, 1000, a);
So the ID is parsed into the function itself, this way I wont have to store the ID to clear it again.