async function functionName() { try { let results = await Promise.all([function1(), function2(), function3()]); //some more awaits below this point } catch(err) { console.log(err) } }