(async () => { await someAsyncFunction(); })();
let x = await (async function() {return "hello"})(); console.log(x); // or console.log(await (async() => 'hello')())