<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Introducción a las Funciones </title>
</head>
<body>
<h1> Programa Funciones </h1>
<script>
function saltarlinea() {
document.write("<br><br>")
}
function imprimir(frase) {
document.write(frase)
saltarlinea()
}
var hermano1 = "Jared"
var hermano2 = "Carlos"
var edad1 = 32
var edad2 = 22
imprimir("Las edades de los hermanos son: ")
imprimir(hermano1 + " " + edad1)
imprimir(hermano2 + " " + edad2)
imprimir("La diferencia de las edades es de: ")
imprimir(edad1 - edad2 + " años")
// Este código calculará la diferencia de edades entre dos hermanos.
</script>
</body>
</html>