Mi Solución al ejercicio de los números pares.
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
</head>
<body>
<h2>Números Pares del 1 al 100</h2>
<script lang="javascript">
// Formula x = (n % 2) == 0
function saltarLinea()
{
document.write("<br>");
}
function imprimir(frase)
{
document.write(frase);
saltarLinea();
}
let numero = 2;
let numPar;
while (numero <= 10) {
numPar = (numero % 2) == 0; // Nos devuelve un booleano
if (numPar) {
imprimir(numero);
}
numero = numero + 2;
}
imprimir("FIN");
</script>
</body>
</html>