<button>Click</button>
document.querySelector('button').onclick = () => {
this.onclick.style.color = "backgorund: red";
}
document.querySelector('button').addEventListener('click', event => {
event.target.style.backgroundColor = 'red'
})
document.querySelector('button').onclick = () => {
console.log(this) // смотри, this это не кнопка
this.onclick.style.color = "backgorund: red"; // кнопка.onclick.style?
}
// вот так сработает
document.querySelector('button').onclick = function(){
console.log(this) // теперь this это кнопка
this.style.background = "red";
}