Javascript - Promises - Await


await is used inside of an async function. await waits for Promise to be fulfilled and returns the results.

Examples here.