js
const tecladoNum = document.querySelectorAll('input[type=button]');
const numTel = document.querySelector('input[type="tel"]');
for(var i = 0;i <= tecladoNum.length;i++){
let valorNum = tecladoNum[i].value
let teclaNum = tecladoNum[i]
teclaNum.onclick = function () {
numTel.value += valorNum
}
teclaNum.onkeydown = function(event){
if (event.keyCode == 32 || event.keyCode == 13){
teclaNum.classList.add('ativa')
}
}
teclaNum.onkeyup = function(){
teclaNum.classList.remove('ativa')
}
}