Skip to content

Instantly share code, notes, and snippets.

@kypflug
Last active May 24, 2016 00:39
Show Gist options
  • Save kypflug/c7fe6c064257dc103b0ff39017f6c028 to your computer and use it in GitHub Desktop.
Save kypflug/c7fe6c064257dc103b0ff39017f6c028 to your computer and use it in GitHub Desktop.
fetch(url).then(function(response) {
return response.json();
}).then(function(jsonData) {
console.log(jsonData);
}).catch(function() {
console.log("Houston, we've got a problem.");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment