Event Loop in Javascript
Javascript is a synchronous single-threaded language, which means javascript can do one task at a time and the javascript engine has a single call stack for executing javascript code, whatever comes into it, it just quickly executes it.
So how does a...
himanxu.hashnode.dev4 min read