Estuve experimentando un poco el tema de funciones, me pareció algo bastante interesante y súper factible en el sentido de practicidad y diseño. A continuación muestro el código:
<meta charset="UTF-8">
<h1> PROGRAMA </h1>
<script>
function saltarlinea() {
document.write("<br><br>");
}
function imprimir (){
document.write(nombre1 + " tiene: " + (anho-2000) + " años");
saltarlinea();
document.write(nombre2 + " tiene: " + (anho-1995) + " años");
saltarlinea();
document.write(nombre3 + " tiene: " + (anho-2005) + " años");
}
var anho = 2020;
var nombre1 = "Juan";
var nombre2 = "Pedro";
var nombre3 = "Carlos";
imprimir();
</script>
Se ve un poco más "limpio" el código y de alguna manera es un poco más fácil de entender.