function cursArr() {
var xhr = new XMLHttpRequest();
xhr.open('GET', 'A.json', false);
xhr.send();
if (xhr.status != 200) {
xhr.open('GET', 'B.json', false);
xhr.send();
return JSON.parse(xhr.responseText);
}
else {
return JSON.parse(xhr.responseText);
}
}