Asynchronous Javascript
How JS executes the code?
JavaScript is a single-threaded programming language. It can perform one task at a time. It will block other tasks until the current task completes its execution
Every browser has its own JavaScript Engine.
Whenever the Jav...
supercoder5.hashnode.dev7 min read