const listaDeTeclas = document.querySelectorAll("input[type=button]");
const telefone = document.querySelector("input[type=tel]");
function escrever (numero){
telefone.value = telefone.value+numero;
}
var n = 0;
while (tecla = listaDeTeclas[n]){
const numero = tecla.value;
tecla.onclick = function () {
escrever(numero);
}
n++;
}