The Essentials of Asynchronous JavaScript: How It Works and Why It's Important
What & Why?
In its most basic form, JavaScript is a synchronous, blocking, single-threaded language.
Synchronous
If we have two functions which log messages to the console, code executes top down, with only one line executing at any given time
B...
devcraftsmen.hashnode.dev3 min read