Buenas noches Team.
Tengo una duda porque cuando ejecuto no me sale nada.
Creo que la logica esta bien pero algo me falta.
Comparto codigo.
<!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>Pares</title>
</head>
<h1> Pares </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
var numeroPar = 2;
while (numeroPar < 100) {
imprimir(numeroPar * multiplicar);
multiplicar++;
}
</script>