How do you ensure an XMLHttpRequest() has received its full response before continuing?
I’m looping XMLHttpRequests and for each response I’m pushing it to an array. I use async/await to try to ensure that I only return my array of responses once all of the responses are recieved. For some reason, with no error, this method is not working and I am not getting the full response array.… Read More How do you ensure an XMLHttpRequest() has received its full response before continuing?