let globalResponse;
fetch(url)
.then((response) => {
globalResponse = response;
return response.json();
})
.then((responseData) => {
console.log(responseData, globalResponse);
})
const response = await fetch(url);
const responseData = await response.json();
console.log(responseData, response.headers);
$.each(json, function(i, object) {
if (object.id == 88) {
alert(object.alias);
return;
}
});