Здесь вы go
async function checkResponse(url) {
const Response3 = await fetch(url);
// thats mean pleas check the status of Response3 if it is equal to 404 (cannot connect to server)
// otherwise put the same response (or the data you want like: Response3,players)
let Response4 =
Response3.status === 404 ? 'Cannot connect to the server' : Response3;
/*
// or if you like if statment
let Response4 = Response3;
if (Response3.status === 404) {
Response4 = 'Cannot connect to the server';
}
*/
console.log(Response4);
}
checkResponse();
Если вам нужно какое-либо объяснение, или это не то, о чем вы спрашиваете, пожалуйста, прокомментируйте мой ответ