JSFiddle - React, Tailwind, and code Playground
by Ansmtz
JavaScript
const endpoint = "https://api.sampleapis.com/coffee/iced";
const f = fetch(endpoint).then(res=>res.json()).then(data => (data));
console.log(f);
by Ansmtz
const endpoint = "https://api.sampleapis.com/coffee/iced";
const f = fetch(endpoint).then(res=>res.json()).then(data => (data));
console.log(f);