Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
const square = document.querySelectorAll('.__free'); square.style.backgroundColor = 'green';
const square = document.querySelectorAll('.__free'); square.forEach(elem=>{ elem.style.backgroundColor ="green"; } )
square.forEach((el) => el.style.backgroundColor = 'green')