InterviewSolution
| 1. |
What Is The Purpose Of Setinterval Function? |
|
Answer» The SETINTERVAL(cb, ms) global function is used to run callback cb repeatedly after at least ms milliseconds. The actual delay depends on EXTERNAL factors like OS timer granularity and system load. A timer cannot SPAN more than 24.8 days. The setInterval(cb, ms) global function is used to run callback cb repeatedly after at least ms milliseconds. The actual delay depends on external factors like OS timer granularity and system load. A timer cannot span more than 24.8 days. |
|