Skip to content

Instantly share code, notes, and snippets.

@doug2k1
Last active September 1, 2017 02:54
Show Gist options
  • Save doug2k1/bc1611f23d3fbd0683ec76903ef3a535 to your computer and use it in GitHub Desktop.
Save doug2k1/bc1611f23d3fbd0683ec76903ef3a535 to your computer and use it in GitHub Desktop.
// requisição:
// tenta fazer um GET em URI inexistente
fetch('https://api.github.com/nonexistent-uri')
.then(response => {
if (response.ok) {
// não deve entrar aqui
console.log('success')
} else {
console.log(response.status)
}
})
// vai logar:
// 404
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment