If the a and b promise functions exist, do the two codes below work the same?
await Promise.all([a(), b()]);
await (a(), b());
If the a and b promise functions exist, do the two codes below work the same?
await Promise.all([a(), b()]);
await (a(), b());