Vidyalelo
JavaScript · Q7

Document Object Model And Event Handling

Programming · JavaScript · question 7

Q7

Which method receives the return value of setTimeout() to cancel future invocations?

A.
clearTimeout()
Answer
B.
clearInterval()
C.
clearSchedule()
D.
none of the mentioned

Answer: Option A

Solution

Answer: Option A
Solution:
setTimeout() returns a value that can be passed to clearTimeout() to cancel the execution of the scheduled function.