If you remove the arrow function and write in the format "function (arg) {// Code}"
function removeTransition(e) { if(e.propertyName !== 'transform') return; this.classList.remove('active'); } var keys = document.querySelectorAll('.btn'); keys.forEach(key => key.addEventListener('transitionend', removeTransition)); what kind will it have?