Using setTimeout() it is possible to launch a function at a specified time:
setTimeout()
setTimeout(function, 60000);
But what if I would l
here we console natural number 0 to ......n (next number print in console every 60 sec.) , using setInterval()
var count = 0; function abc(){ count ++; console.log(count); } setInterval(abc,60*1000);