<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Imprimir los numeros pares del 1 al 100</h1>
<script>
function saltarLinea(){
document.write("<br>")
}
function imprimir(frase){
document.write(frase);
saltarLinea();
}
let contador=2;
while(contador<=100){
imprimir(contador);
contador=contador+2;
}
</script>
</body>
</html>