InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of clearTimeout function? |
|
Answer» The clearTimeout( t ) global function is used to stop a timer that was previously created with setTimeout(). Here t is the timer returned by setTimeout() function. |
|