setTimeout(), setInterval(), and requestAnimationFrame()
What happens if you call clearInterval with an invalid ID?
When clearInterval is called with invalid ID: 1) No error is thrown, 2) Operation is safely ignored, 3) Other intervals continue running, 4) No side effects occur, 5) Safe to call multiple times, 6) Follows fail-safe design principle.