When using an arrow function, 'this' refers to the surrounding context. So no need to do that anymore!
element.addEventListener('click', () => { console.log(this); // 'this' refers to the surrounding context });