var timer1 = setTimeout(function() { removeStatusIndicator(); }, statusTimeout); clearTimeout(timer1)
// wait 1000ms and then run func() let myTimeout = setTimeout(func, 1000); // cancel the timeout clearTimeout(myTimeout);