<meta charset="UTF-8">
<h1> TODOS LOS NÚMEROS PARES DEL 1 AL 100</h1>
<script>
function saltarLinea() {
document.write("<br><br><br>");
}
function imprime(frase) {
document.write(frase);
saltarLinea();
}
var numeroPar = 0;
while (numeroPar < 100) {
numeroPar = numeroPar + 2;
imprime(numeroPar);
}
imprime("FIN");
</script>