Last active
August 2, 2018 09:02
-
-
Save anchietajunior/56b0c043bdb37bd7629955191f9d0346 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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