Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
await Promise.all([one(), query()])
await Promise.all([one(), query().then(async resp => {await commit()})])
await Promise.all([ one(), query().then(commit) ])
await Promise.all([ one(), query().then(r => (commit(), r)) ])
await Promise.all([ one(), (async () => { try { await query() await commit() } catch (error) { throw error } })() ]);