EN
JavaScript - max setTimeout() value / time?
1 answers
0 points
What is max setTimeout()
value in milliseconds? How much is it in hours / days?
1 answer
3 points
Browsers store the delay as a 32-bit signed integer internally, so the max value allowed would be 2147483647
ms (about 24.8 days).
References
0 commentsShow commentsAdd comment