I want to know why the window interval timer starts from 132 or another number.
Chrome/75.0.3770.142 DevTool Console
const id = setInterval(()=>{
console.log('hey bro');
},1000);
console.log(id);
Why it doesn't start from 0?
0~131 what means in browser?