Using setTimeout() it is possible to launch a function at a specified time:
setTimeout()
setTimeout(function, 60000);
But what if I would l
setInterval(fn,time)
is the method you're after.