Skip to content

Instantly share code, notes, and snippets.

@JimRottinger
Last active June 10, 2019 21:37
Show Gist options
  • Save JimRottinger/a9f6cb9d7759c7c126aa6053766078f8 to your computer and use it in GitHub Desktop.
Save JimRottinger/a9f6cb9d7759c7c126aa6053766078f8 to your computer and use it in GitHub Desktop.
function getRedditJSON () {
return fetch('https://www.reddit.com/.json')
.then((response) => {
return response.json()
})
}
getRedditJSON().then((data) => {
console.log(data)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment