#async map

4 messages · Page 1 of 1 (latest)

cyan locust
#

Is there anyway using the stdlib to map from one array to another array, with the work being done concurrently with async?

crisp gull
#

The Promise.all() static method takes an iterable of promises as input and returns a single Promise. This returned promise fulfills when all of the input's promises fulfill (including when an empty iterable is passed), with an array of the fulfillment values. It rejects when any of the input's promises rejects, with this first rejection reason.

cyan locust
#

Is there any significance of Promise.all([...]) vs for await (const x of [...])?