Skip to content

Instantly share code, notes, and snippets.

@tamlyn
Created May 14, 2018 16:39
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 tamlyn/b922286e38e9f7a783d9c53f3968c5ca to your computer and use it in GitHub Desktop.
Save tamlyn/b922286e38e9f7a783d9c53f3968c5ca to your computer and use it in GitHub Desktop.
async function fact() {
const response = await fetch('https://catfact.ninja/fact')
const data = await response.json()
return data.fact
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment