Fish Touching🐟🎣

JavaScript Async Await

Apr 3, 2023

See also Asynchronous and JavaScript Event Loop

# Javascript

src: Nodejs doc

async/await is built on JavaScript Promise.
They make the code look like it’s synchronous, but it’s asynchronous and non-blocking behind the scenes.

The one caveat being, anything you await must have been declared async: