1 min readMay 17, 2019
Hi Nadia,
What I had written was, JS is single threaded, but it doesn’t act like one. When we call async functions and use callbacks it doesn’t behave like a single threaded application and this is achieved with the help of Event Loop. In short the Event loop is part of this single thread.
Try going through the Concurrency Model in JS, it will help you better understand the event loop