console.log('Лол, кек, чебурек');
превратиться в var _0xac52=["\u041B\u043E\u043B\x2C\x20\u043A\u0435\u043A\x2C\x20\u0447\u0435\u0431\u0443\u0440\u0435\u043A","\x6C\x6F\x67"];console[_0xac52[1]](_0xac52[0])
. Оно вам надо? ИМХО всё это детский сад. if (
typeof(mandatory) === 'string'
&& typeof(mandatory) !== null
&& typeof(expenseAmount) !== null
&& mandatory !== ''
&& expenseAmount !== ''
) {
console.log('done');
}
<input type="text" id="i1">
<input type="text" id="i2">
const i1 = document.querySelector('#i1');
const i2 = document.querySelector('#i2');
i1.addEventListener('input', function (e) {
if (e.target.value) {
i2.setAttribute('disabled', true);
} else {
i2.removeAttribute('disabled');
}
});
i2.addEventListener('input', function (e) {
if (e.target.value) {
i1.setAttribute('disabled', true);
} else {
i1.removeAttribute('disabled');
}
});