Skip to content

Instantly share code, notes, and snippets.

@bjdixon
Created May 10, 2016 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjdixon/263dab829f8c9758d059a14a07aa6363 to your computer and use it in GitHub Desktop.
Save bjdixon/263dab829f8c9758d059a14a07aa6363 to your computer and use it in GitHub Desktop.
Example of using fetch to get json data
fetch(url)
.then(response => response.json())
.then(data => console.log(data))
.catch(err => console.log(err))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment