Я хочу удалить все console.log () из моего кода, но я застрял в одном случае. Мой код содержит что-то вроде следующего:
const xhr = new XMLHttpRequest(),
method = "GET",
url = "https://example.com/";
xhr.open(method, url, true);
xhr.onreadystatechange = function () {
if(xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
console.log(xhr.responseText);
}
};
xhr.send();
======= ================================================== ===========================================
xhr.onreadystatechange = function () {
if(xhr.readyState === XMLHttpRequest.DONE && xhr.status === 200) {
console.log(xhr.responseText);
}
};
Функция onreadystatechange имеет console.log()
в условии if. Должен ли я удалить всю функцию или мне нужно удалить только console.log с условием if?
Будет ли что-нибудь сломано, если я удалю полную функцию onreadystatechange?