<meta charset="UTF-8">
<meta charset="UTF-8">
Hola Manuel, como estás? espero que muy bien.
Creo que te olvidaste de compartir tu código completo.
Para compartir un código, haz clic en este botón aquí y escreba tu código dentro de el:
Espero haberte ayudado!!!
LISTO, GRACIAS EVELYN, NO ME HABÍA DADO CUENTA
<meta charset="UTF-8">
<h1>Program - EVEN NUMBERS FROM 1 TO 100 </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
var number = 1;
while (number <= 100 ){
imprimir((number-1) + 2);
number = number +2;
}
imprimir ("END");
</script>