<body>
<form>
<input type="text" name="email" placeholder="email">
<input type="password" placeholder="password">
<button>LOGIN</button>
</form>
<script>
const form = document.forms[0];
const button = document.querySelector('button');
function count(){
if (form.elements[1].value.length>4 && form.elements.email.value.length>4 ){
//if (form.elements[1].value.length>4 && form.elements[0].value.length>4 ){
button.style.backgroundColor = "#90E39A";
}else{
button.style.backgroundColor = "#331E38";
}
}
form.addEventListener('keyup', function(){count();})
</script>
</body>
Проверил в браузере, все работает корректно.
Вначале была правильная строчка заремленная.
Затем поменял, как вы советуете на форуме, все равно ошибка.