<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contador Numeros Pares</title>
</head>
<body>
<h1>Contador de Numeros Pares</h1>
<script type="text/javascript">
function saltarlinea () {
document.write("<br><br>");
}
function imprimir (phrase) {
document.write(phrase);
saltarlinea();
}
var contador = 1
var limite = 51
var numerosPares = -2
while (contador <= limite) {
numerosPares = numerosPares + 2;
imprimir(numerosPares);
contador++;
}
imprimir("fin")
</script>
</body>
</html>