Skip to content
Advertisement

JavaScript – Promise.allSettled + Array.reduce()

Introduction

Imagine this method for getting the language of a user:

JavaScript

Now, I am trying to group the language of multiple users, performing a parallel request:

JavaScript

Problem

But my implementation is not working:

JavaScript

How can I do for getting an output like

JavaScript

using the Promise.allSettled combined with .reduce?

Advertisement

Answer

Your .reduce is constructing an object where each value is a Promise. Such an object is not something that .allSettled can understand – you must pass it an array.

I’d create an object outside, which gets mutated inside a .map callback. This way, you’ll have an array of Promises that .allSettled can work with, and also have the object in the desired shape.

JavaScript

An option that doesn’t rely on side-effects inside a .map would be to instead return both the userId and the language inside the map callback, then filter the allSettled results to include only the good ones, then turn it into an object.

JavaScript
Advertisement