let interval = null; interval = setInterval(()=>{},1000); clearInterval(interval);
My question is why we assign interval variable to null?