You can identify an interval by naming it and use the name to clear only that interval
var id = setInterval(function () { print('foo'); }, 1000); clearInterval(id)
https://www.espruino.com/Reference#l__global_setInterval
https://www.espruino.com/Reference#l__global_clearInterval
@ClearMemory041063 started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
You can identify an interval by naming it
and use the name to clear only that interval
https://www.espruino.com/Reference#l__global_setInterval
https://www.espruino.com/Reference#l__global_clearInterval