mock_sobes
← Debug — найди ошибку в коде (разные языки)
middle debug #605
Кнопка не меняет цвет после клика. Что не так? ```js class ColorButton { constructor(el) { this.el = el; this.color = 'red'; this.el.addEventListener('click', this.toggle); } toggle() { this.color = this.color === 'red' ? 'blue' : 'red'; this.el.style.background = this.color; } } new ColorButton(document.getElementById('btn')); ```
Чтобы решить вопрос и сохранить попытку — войди.