JSFiddle - React, Tailwind, and code Playground
JavaScript
let user = "catbowl3";
fetch("https://scratchdb.lefty.one/v2/user/info/" + user)
.then(response => response.json())
.then(data => {
console.log(data.id);
});
let user = "catbowl3";
fetch("https://scratchdb.lefty.one/v2/user/info/" + user)
.then(response => response.json())
.then(data => {
console.log(data.id);
});