Buenas Noches:
Cordial Saludo
<html>
<head>
<meta charset="UTF-8">
<title>Ejercicio: Imprime Numeros Pares</title>
</head>
<body>
<h1>Impresion Numeros Pares</h1>
<script>
//Funcion Salto de linea
function breakLine(){
document.write("<br><br>");
}
//Funcion para imprimir en pantalla
function displayPrint(prhase){
document.write(prhase);
breakLine();
}
var startRange = 1;
var endRange = 100;
while(endRange > startRange){
if((startRange%2) == 0){
displayPrint(startRange);
}
startRange++;
}
displayPrint("Fin");
</script>
</body>
</html>