using await with promis all code example

Example 1: await all pronmises

Promise.all([promise1, promise2, promise3]).then(function(values) {
  console.log(values);
});

Example 2: map with promise.all

//Here i have filmresponse.json() which will return promise so i uses promise.
//all otherwise it won't be possible to run it 

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)