67. What is the difference between setTimeout and setInterval?
Share
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.