The story behind JS: how async works
We all know that JS is a single-threaded non-blocking asynchronous concurrent language.
But what does this actually mean?
Let’s find out:
Suppose we have a function that calls another function that calls one more function, such as:
function add(a,b)...
thefearofblogs.hashnode.dev5 min read