💾getJSON()

JSasyncPromise ⟩ getJSON()

function getJSON(url) { 
    return fetch(url).then(response => response.json()); 
}

Last updated