a question. If i use setInterval in this manner:
setInterval(\'doSome();\',60000);
am i safe that the doSome() function is tri
doSome()
If the tab with the setInterval() function remains open, then yes the function will be executed every 60 seconds, even if you switch to or open other tabs.
setInterval()