Event Loop in JavaScript
Javascript is a synchronous single-threaded language. JS executes all operations on a single thread. It executes one thing at a time.
The Event loop gives us the illusion of asynchronous programming in JavaScript.
Before understanding the event loop,...
bobby-sadhwani.hashnode.dev4 min read