What is Event Loop in JavaScript?
The event loop is the pushing of events from the event queue or callback queue to the javascript call stack.
It is this concept which makes javascript behave like a multi-threaded programming language although it is single-threaded.
Call Stack: It i...
tenzinwoz.hashnode.dev2 min read