Skip to content

Instantly share code, notes, and snippets.

@leopolicastro
Last active November 17, 2020 18:43
Show Gist options
  • Save leopolicastro/03a837440d90bb470287ddb88ef95707 to your computer and use it in GitHub Desktop.
Save leopolicastro/03a837440d90bb470287ddb88ef95707 to your computer and use it in GitHub Desktop.
fetch(url)
.then(data => {
return data.json()
})
.then(res => {
console.log(res)
})
.catch(err => {
console.log(err)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment