InterviewSolution
Saved Bookmarks
| 1. |
The setTimeout() belongs to which object?(a) Element(b) Window(c) Location(d) Event |
|
Answer» Right option is (b) Window The explanation: The setTimeout() method of the Window object schedules a function to run after a specified number of milliseconds elapses. setTimeout() and setInterval() are used for time manipulations in javascript. |
|