The setTimeout() belongs to which object?
A
Element
B
Window
C
Location
D
Event
Correct Answer: Window
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.