Oddbean new post about | logout
 Implementing Timers in JavaScript: A Better Approach

JavaScript developers often use timers to manage tasks, but setting timeouts with setTimeout or setInterval may not be the best practice. According to a recent article, using these functions can lead to low-priority callbacks and difficulties debugging. Instead, it's recommended to use requestAnimationFrame, which ensures timely execution before UI changes.

Source: https://dev.to/jospinevans/you-dont-need-to-set-the-time-out-5bfo