Erro mp navegador edge e no chrome main.js:10 Uncaught TypeError: Cannot read properties of undefined (reading 'classList') at main.js:10:21
Erro no navegador firefox Uncaught TypeError: tecla is undefined http://127.0.0.1:5500/main.js:10
JS
const listaDeTeclas = document.querySelectorAll('.tecla');
function tocaSom(somTecla){
document.querySelector(somTecla).play();
}
let i = 0
while(i<=listaDeTeclas.length){
let tecla = listaDeTeclas[i];
let som = tecla.classList[1];
let idSom = `#som_${som}`;
tecla.onclick = function(){
tocaSom(idSom)
}
i++
}