Skip to content

Instantly share code, notes, and snippets.

@anchietajunior
Last active August 2, 2018 09:02
Show Gist options
  • Save anchietajunior/56b0c043bdb37bd7629955191f9d0346 to your computer and use it in GitHub Desktop.
Save anchietajunior/56b0c043bdb37bd7629955191f9d0346 to your computer and use it in GitHub Desktop.
function getStarWarsPeople() {
fetch('https://swapi.co/api/people')
.then(data => data.json())
.then(data => data.results.map(person => {
console.log(person.name);
}))
console.log('Luke i`m your father!');
}
getStarWarsPeople();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment