Async: Await
Makes JavaScript wait until that promise settles and returns its result.
The await keyword before a promise makes JavaScript wait until that promise settles, and then.
Syntax
// works only inside async functions
let value = await promise;
Semantic portal