Hola aqui esta mi aporte
<meta charset="UTF-8">
<H1>Numeros pares</H1>
<script>
function saltarLinea() {
document.write("<br><br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
imprimir('Los numeros pares del 0 al 100 son: ');
num = 2;
while (num <= 100) {
imprimir(num + ' Es par');
num = num+2;
}
</script>