Resolve And Pass Multiple Values From A Then
Let's say you are chaining multiple async function calls together.
But in the last then()
you want access to both the trainerData
and the pokemonData
. So, how do you pass both the trainerData
and the resolved response of fetchPokemonFor()
through to that last then()
.
Promise.all
allows us to resolve and pass multiple promises. If any of the values in the array argument is not a promise, it simply passes it through.
h/t Brian Dunn
Last updated