var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onreadystatechange = receiveResponse;
xhr.send();
Does the “true” parameter imply that the object loads asynchronously?
If this is not the case, what does the “true” do specifically?
Yes. And the default is true.