Saved Bookmarks
| 1. |
What is “setTimeout” method used for |
|
Answer» Timeout() method calls a function or evaluates an EXPRESSION after a SPECIFIED number of milliseconds. Tip: The function is only executed once. If you NEED to repeat execution, USE the setInterval() method. Tip: Use the clearTimeout() method to prevent the function from running. |
|