Async and Await #JS mordern concept.
Async and Await enteres in to handle complexity of Promises.
Which is a call back of hell problem, to make it look like synchronous but it's act asynchronous and non-blocking behind the scenes.
const myFunction = () => { return 'Test'; } // Normal fu...
ajaybaraiya6.hashnode.dev2 min read