What is the difference between setTimeout and setInterval?
2022年5月1日小于 1 分钟
What is the difference between setTimeout and setInterval?
Question
First please understand 46. Explain Event Loop in Browser and in Node.js.
setTimeout
could be used to mimic(sort of) the behavior of setInterval
, there is an big difference between them though. This article on JavaScript.info explains it very well.