Código del ejercicio "Todos los números pares del 1 al 100".
<!Doctype>
<html>
<head>
<meta charset="utf-8">
<title>Ejemplo1</title>
</head>
<body>
<h1>Programa - Imprimir numeros pares</h1>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
var contador = 2;
var numeroPar = 0;
while ( contador <= 100) {
numeroPar = (0 + contador);
imprimir( numeroPar);
contador = contador + 2;
}
imprimir("fin");
</script>
</body>
<html>