/ Gists / Fast images via API fetch
On gists

Fast images via API fetch

JavaScript

fetch.js Raw #

fetch("https://dog.ceo/api/breeds/image/random/10")
 .then((response) => response.json())
 .then((data) => data.message)
 .then(arrayOfLinks => console.log(arrayOfLinks))