Skip to content

Instantly share code, notes, and snippets.

@WaldoJeffers
Last active May 27, 2018 11:11
Show Gist options
  • Save WaldoJeffers/0ac4bc2e442dd64421a1687680e27335 to your computer and use it in GitHub Desktop.
Save WaldoJeffers/0ac4bc2e442dd64421a1687680e27335 to your computer and use it in GitHub Desktop.
const fetchJSON = url => fetch(url).then(res => res.json())
const fetchCharacter = id => fetchJSON(`https://swapi.co/api/people/${id}`)
// fetchCharacter(1) == { name: 'Luke Skywalker', homeworld: 'https://swapi.co/api/planets/1/' }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment