Ajax - Getting JSON from HTTP request

XHR - XMLHttpRequestObject

Javascript "fetch"

fetch(url).then(response => response.json()).then(data => processData(data));

jQuery

jQuery makes this easier with the ".getJSON" method!