Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save irridescentrambler/e65c53bd56a0fbdeda5acf0677d8c28f to your computer and use it in GitHub Desktop.
Save irridescentrambler/e65c53bd56a0fbdeda5acf0677d8c28f to your computer and use it in GitHub Desktop.
async function getData(url){
const response = await fetch(url);
console.log(response);
}
getData('https://dog.ceo/api/breeds/image/random');
getData('https://dog.ceo/api/breed/Husky/images/random');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment