La solución propuesta
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<script>
function saltar_lineas(numero_de_lineas){
for( let i = 0; i < numero_de_lineas; i++){
document.write("<br>");
}
}
function imprimir (texto){
document.write(texto);
saltar_lineas(1);
}
function calcular_diferencia_edades(edad1, edad2){
return Math.abs(edad1-edad2);
}
function imprimir_diferencia_edades(edad1, edad2){
imprimir("Nuestra diferencia de edad es " + calcular_diferencia_edades(edad1, edad2));
}
edad_persona1 = 25
edad_persona2 = 50
imprimir_diferencia_edades(edad_persona1, edad_persona2);
</script>
Entrega el siguiente resultado: