Async/Await

Description

Functions that are marked as async can contain await statements. await statements will pause the async function until the passed Promise resolves, returning the resulting value.

function() {
  console.log(await async_method());
}