ARAnother option for parallelism: const getAllUsersAndProducts1 = async () => { const [users, products] = await Promise .all([ fetchAllUsers(), fetchAllProducts(), ]); return { users, products }; };Comment·Article·May 16, 2022·Asynchronous Programming in TypeScript