<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Cálculo diferencia de edades</title>
</head>
<body>
<script>
var yourBirthYear; //variable declaration in the gloabal scope
var brotherBirthYear; //variable declaration in the gloabal scope
var diferenciaEdades; //variable declaration in the gloabal scope
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
}
imprimir("<h1>Cálculo diferencia de edades</h1>")
saltarLinea();
imprimir("Cuantos años de diferecia tienes con tu hermano?");
saltarLinea();
yourBirthYear = prompt("Dime en que año naciste?"); //askes for your BornYear
brotherBirthYear = prompt("Dime en que año nacio tu hermano?"); //askes for your brother´s BornYear
diferenciaEdades = Math.abs(yourBirthYear - brotherBirthYear); //use of the Absolute value function to avoid negative numbers
imprimir("Nuestra diferencia de edad es: " + diferenciaEdades); //print out on a web document the difference between you and your brother.
</script>
</body>
</html>