btn.addEventListener('click', () => {
let age = parseInt((document.querySelector('#input')).value, 10);
document.write(age >= 14 ? 'Юхуууууу.... Вы уже можете принять участие в голосовании :/' : 'Вам ещё нет 14 лет....');
})
alert(`variable = ${input.value}`);
document.write(`variable = ${input.value}`);
let element = document.querySelectorAll('.day');
let li = document.querySelectorAll('li');
for (let i = 0; i < element.length; i++) {
setInterval(() => {
if(parseInt(li[i].textContent, 10) <= new Date().getHours()) {
element[i].classList.remove('night');
}
}
, 1000);
}