0
Q:

promise.all async await

Promise.all([promise1, promise2, promise3]).then(function(values) {
  console.log(values);
});
2
async function fetchABC() {
  const [a, b, c] = await Promise.all([a(), b(), c()]);

} 
1
let characterResponse = await fetch('http://swapi.co/api/people/2/')
let characterResponseJson = await characterResponse.json()
let films = await Promise.all(
  characterResponseJson.films.map(async filmUrl => {
    let filmResponse = await fetch(filmUrl)
    return filmResponse.json()
  })
)
console.log(films)
0

New to Communities?

Join the community