Hacker News new | ask | show | jobs
by simonbarker87 939 days ago
allSettled() returns an array of objects for each promise result that tells you if it has been rejected or resolved, so as long as all the promises reject or resolve then it should solve the problem I think?
1 comments

moring is describing an issue where the creation of the promise itself fails, which means Promise.all/Promise.allSettled is never called.
Use the second pattern with `.allSettled` but map it with an async function.

      const result = await Promise.allSettled(elements.map(async x => someAsyncFunction3(computeArg3(x))));