function tuEdad(){ let edad = parseInt(prompt("Cuantos años tienes")); let nacimiento = 2025-edad; document.getElementById("edad").innerHTML = "Naciste en el año: "+nacimiento; } function borrar(){ document.getElementById("edad").innerHTML = ""; }