JSFiddle - React, Tailwind, and code Playground

by Mahmoud Kassem

JavaScript

fetch("https://learnwebcode.github.io/json-example/animals-1.json")
        .then((response) => response.json())
        .then((json) => {
            json.forEach((animal) => {
                console.log(animal);
            });
        });