Create promiseAllSettled that waits for all promises to settle and returns array of {status, value/reason}. Never rejects.
Skip to solutionKEEP THE
mediumFrontend
Implement Promise.allSettled()
737 views
01
Understand the problem
promisepromiseAllSettled
02
Attempt it yourself
Sketch your approach before reading the solution — that's what interviews test.
Nudge consolestandby
Stuck? Beam a request up — the console returns a conceptual nudge that guides your logic without spoiling the implementation.
03
Study the solution
Approach: Map each to Promise.resolve(p).then(value=>({status:"fulfilled", value}), reason=>({status:"rejected", reason})) then Promise.all.
function promiseAllSettled(iterable) {
const promises = [...iterable];
if (promises.length === 0) return Promise.resolve([]);
return Promise.all(promi
Solution ready — 2 min read
Classified // press E to declassify
04
Join the discussion
Discussion (0)
Sign in to join the discussion.
No responses yet. Be the first to share what you think.
Transmission complete // awaiting log
KEEP THE
STREAK ALIVE.
Dossier 129 of 190 decoded in the JavaScript Coding track. One more won't hurt.