Async/await - Wikipedia
https://en.wikipedia.org/wiki/Async/await
In computer programming, the async/await pattern is a syntactic feature of many programming languages that allows an asynchronous...
Javascript async-await: How to Use ES7 async-await
https://appdividend.com/2018/01/16/javascript-es7-async-await-tutorial-example/
Async-await is a new way to write asynchronous code. Previous options for asynchronous code are If we want to understand precisely what async-await is and how they work, we first need to...
JavaScript Async | Await Syntax
https://www.w3schools.com/js/js_async.asp
"async and await make promises easier to write". async makes a function return a Promise. The keyword async before a function makes the function return a promise
Exploring Async/Await Functions in JavaScript | DigitalOcean
https://www.digitalocean.com/community/tutorials/js-async-functions
Async/await functions, a new addition with ES2017 (ES8), help us even more in allowing us to write completely synchronous-looking code while performing asynchronous tasks behind the scenes.