Dejo aquí mi código.
<meta charset="UTF-8">
<h1>NÚMEROS PARES DEL 0 AL 100</h1>
<script>
// Definir las funciones a utilizar.
function jumpLine() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function fakePrint(text) {
document.write(text)
jumpLine();
}
// Definir las variables del contador y de la acumulación de números pares.
var conteoPar = 0;
var contador = 1;
// Condicionar el conteo de modo que termine cuando sea igual o menor a 100.
while(conteoPar <= 100){
fakePrint(conteoPar);
conteoPar = conteoPar + 2;
contador++;
}
// Marcar el fin del conteo.
fakePrint("FIN DEL CONTEO.");
</script>