tomtobac
9/29/2016 - 8:07 PM

countries.js

fetch(`https://restcountries.eu/rest/v1/all`)
.then((res) => {
  return res.json()
})
.then((values) =>{
  let array = values
              .map(x => {return {name: x.name, code: x.alpha3Code};})
  console.log(array.length)
})