Skip to content

Instantly share code, notes, and snippets.

@JimRottinger
Last active June 10, 2019 21:38
Show Gist options
  • Save JimRottinger/91b38e1cefab44906011b1833d7e3a40 to your computer and use it in GitHub Desktop.
Save JimRottinger/91b38e1cefab44906011b1833d7e3a40 to your computer and use it in GitHub Desktop.
async function getRedditJSON () {
const response = await fetch('https://www.reddit.com/.json')
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