Using setTimeout() it is possible to launch a function at a specified time:
setTimeout()
setTimeout(function, 60000);
But what if I would l
Use window.setInterval(func, time).