let xhr = new XMLHttpRequest();
xhr.open("GET", 'url', true);
xhr.send();
xhr.onreadystatechange = function(res, req) {
if (xhr.readyState === 4) {
if (xhr.status === 200 || xhr.status === 304) {
} else {
}
}
}
let xhr = new XMLHttpRequest();
xhr.open("GET", 'url', true);
xhr.send();
xhr.onreadystatechange = function(res, req) {
if (xhr.readyState === 4) {
if (xhr.status === 200 || xhr.status === 304) {
} else {
}
}
}