Skip to content

Instantly share code, notes, and snippets.

@sean3z
Last active September 9, 2017 22:41
Show Gist options
  • Save sean3z/834c2bdb28b1050a216a975762da9fad to your computer and use it in GitHub Desktop.
Save sean3z/834c2bdb28b1050a216a975762da9fad to your computer and use it in GitHub Desktop.
Basic fetch example
fetch('https://api.chucknorris.io/jokes/random')
.then(response => response.json())
.then(body => {
console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment