JSFiddle - React, Tailwind, and code Playground
by kkdaily
JavaScript
const url = 'https://candidate.hubteam.com/candidateTest/v3/problem/dataset?userKey=ad669a58d4e8dbfc7aa3510467e0';
fetch('https://candidate.hubteam.com/candidateTest/v3/problem/dataset?userKey=ad669a58d4e8dbfc7aa3510467e0')
.then(function(response) {
return response.json();
})
.then(function(myJson) {
console.log(JSON.stringify(myJson));
});