Eu tento sempre escrever em inglês e já mudei várias vezes e não consigo fazer funcionar:
const keyList = document.querySelectorAll('input[type=button]');
for(let ind = 0; ind < keyList.length; ind++) {
const key = keyList[ind];
key.onkeydown = function(evento) {
if (evento.code === "Enter" || evento.code === "Space" {
key.classList.add('ativa');
};
}
key.onkeyup = function() {
key.classList.remove('ativa');
};
};