Skip to content

Instantly share code, notes, and snippets.

@Gaafar
Created March 16, 2017 17:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save Gaafar/7661b4a6c5999505ee54cdefe9ad1c7a to your computer and use it in GitHub Desktop.
Save Gaafar/7661b4a6c5999505ee54cdefe9ad1c7a to your computer and use it in GitHub Desktop.
const makeRequest = () => {
try {
getJSON()
.then(result => {
// this parse may fail
const data = JSON.parse(result)
console.log(data)
})
// uncomment this block to handle asynchronous errors
// .catch((err) => {
// console.log(err)
// })
} catch (err) {
console.log(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment