const teclas = document.querySelectorAll('input[type=button]')
const telefono = document.querySelector('input[type=tel]')
for (let contador = 0; contador < teclas.length; contador++) {
const tecla = teclas[contador];
tecla.onclick = function() {
telefono.value = telefono.value + tecla.value;
}
}