Aprovechando que aprendimos sobre sentencias if, decidí colocarlo.
<meta charset="UTF-8" />
<h1>PROGRAMA - CALCULAR LA TABLA DE MULTIPLICAR</h1>
<script>
function saltarLinea() {
document.write("<br>");
}
function imprimir(frase) {
document.write(frase);
saltarLinea();
}
let numeroLimite = 100;
let contador = 1;
while(contador<=numeroLimite){
if(contador%2==0){
imprimir(contador);
contador++;
}
contador++;
}
</script>