You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Needless to say, the async / await version offers better ergonomics and less opportunities to run into type issues.
79
79
80
+
### Handling Rejected Promises
81
+
82
+
You can handle a rejected promise using the [`Promise.catch()`](./api/core/promise#value-catch) method, which allows you to catch and manage errors effectively.
83
+
80
84
### Run multiple promises in parallel
81
85
82
86
In case you want to launch multiple promises in parallel, use `Promise.all`:
0 commit comments