const buttons = document.querySelectorAll('.tecla')
function tocaSom (textButton) {
document.querySelector(#som_tecla_${textButton}
).play()
}
for(let i = 0; i < buttons.length; i++) { buttons[i].onclick = function (e) { tocaSom(e.target.textContent.toLowerCase() } }
Escrevi o código testa forma...violo alguma boa prática?