Skip to content

Instantly share code, notes, and snippets.

@doug2k1
Last active August 31, 2017 19:33
Show Gist options
  • Save doug2k1/b7d19d8ac2184d34fbdbb44155c62ccb to your computer and use it in GitHub Desktop.
Save doug2k1/b7d19d8ac2184d34fbdbb44155c62ccb to your computer and use it in GitHub Desktop.
// the request:
// try to GET an nonexistent URI
fetch('https://api.github.com/nonexistent-uri')
.then(response => {
if (response.ok) {
// we should not reach here
console.log('success')
} else {
console.log(response.status)
}
})
// will log:
// 404
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment