Event Loop and Concurrency in JavaScript
What is the Event Loop?
Event loop is the core mechanism of javascript that allows it to perform non-blocking operations, even though it’s single-threaded. It continuously checks the call stack and the task queue (or message queue) to check what shou...
rahulvijayvergiya.hashnode.dev4 min read