este es mi ejemplo
<meta charset="UTF-8">
<h1>AÑO MUNDIAL DE LA FIFA </h1>
<script>
function saltarLinea() {
document.write("<br>");
document.write("<br>");
document.write("<br>");
document.write("<hr>");
document.write("<br>");
}
function imprimir(frase) {
document.write("<big>" + frase + "</big>");
saltarLinea();
}
var anhomundial = 1930;
var limite = parseInt(prompt("ingresa ekl tope"))
var contador = 1
//imprimir("hubo mundial de la fifa en el año " + anhomundial);
while (anhomundial < limite ) {
imprimir(contador + " hubo mundial de la fifa en el año " + anhomundial);
anhomundial = anhomundial + 4 ;
contador = contador +1 ;
}
imprimir("fin")
</script>