Promise.allSettled([ Promise.resolve(1), Promise.reject("x"), ]).then((arr) => console.log(arr.map(r => r.status)));