InterviewSolution
Saved Bookmarks
| 1. |
Which is the function used to call a function in every time duration?(a) callafter()(b) setInterval()(c) setTimeout()(d) setTime()The question was asked in my homework.I'd like to ask this question from Animation in portion Caching, Debugging and Animation of JavaScript |
|
Answer» CORRECT OPTION is (b) SETINTERVAL() Explanation: The setInterval(function, DURATION) CALLS function after every duration milliseconds. |
|