Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gabrielschulhof/1c7c28f62fdb0412d2a0f3dc0b7a0f02 to your computer and use it in GitHub Desktop.
Save gabrielschulhof/1c7c28f62fdb0412d2a0f3dc0b7a0f02 to your computer and use it in GitHub Desktop.
const result = await fetch('https://some-place/some/path)
.then(
res => {
doSomethingComplicatedWith(res)
},
err => {
console.log('Failed to fetch')
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment