js 中 setTimeout 计时器最大值
项目中踩坑,记录下。没有意识到 setTimeout/setInterval 计时器有最大值问题。
setTimeout(() => {
console.log(1111)
}, 2 ** 31)
2021-03-23
js