Async/await
🏷️ Javascript
Async
Function with async
before always return a promise
Other values are automatically wrapped in a resolved promise
Await
Make JS wait until the promise settles and return its result
🏷️ Javascript
Function with async
before always return a promise
Other values are automatically wrapped in a resolved promise
Make JS wait until the promise settles and return its result