I understand the event loop is run periodically to check if there's any events from the browser, and to check the task queue. But, how often does this happen? Is there a set interval?
I understand blocking code on a webpage will block up the event loop because JavaScript is single threaded, but in async code (with minimal blocking) how often does the event loop run?