1. clearInvocation()
  2. cancelInvocation()
  3. clearInterval()
  4. None of the mentioned
4 views

1 Answers

Answer: Option 3

Like setTimeout(), setInterval() returns a value that can be passed to clearInterval() to cancel any future invocations of the scheduled function.

4 views

Related Questions