JSFiddle - React, Tailwind, and code Playground

by frogggeee McFrogggeee

JavaScript

let user = "catbowl3";
fetch("https://scratchdb.lefty.one/v2/user/info/" + user)
	 .then(response => response.json())
	 .then(data => {
console.log(data.id);
});