Game of Async/Await
async and await are keywords used to handle asynchronous operations in a more readable and synchronous-like way.
async Keyword:
Placed before a function, async makes that function return a promise, even if it appears to return a different type of v...
asyncjscript.hashnode.dev3 min read