let timeoutId = setTimeout(callback, timeInMs); clearTimeout(timeoutId);
let intervalId = setInterval(callback, timeInMs); clearInterval(intervalId);