Is it necessary to call clearTimeout() inside a recursively invoked function in Coffeescript?
clearTimeout()
My concern is whether not calling clearTimeout()
No, setTimeout schedules a one-off event. Once the event has occurred, clearTimeout with that handle is a no-op.
setTimeout
clearTimeout