<meta charset="UTF-8">
<h1>NUMEROS PARES DEL 1 AL 100</h1>
<script>
function saltolinea(){
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprima(frase) {
document.write(frase);
saltolinea();
}
var numeroPar = 0;
while(numeroPar < 100){
imprima(numeroPar + 2);
numeroPar = numeroPar + 2;
}
imprima(" fin ");
</script>