comparto código:
<!DOCTYPE html>
<html lang="en">
<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>mundial</title>
</head>
<body>
<h1 style="text-align: center;">En que año ah habido mundial!!!!</h1>
<script>
function salto() {
document.write('<br>' + '<br>' + '<br>');
}
function imprimir(mensaje) {
document.write(mensaje);
}
let añoMundialFifa = 1930;
let añoBuscado= parseInt(prompt('hasta que fecah deseas ver cuantos mundiales hubo (entre 1930 y 2022)'));
document.write('en estos años ha habido mundiales: ' + '<br>en este año hubo mundial: ' + añoMundialFifa);
while (añoMundialFifa <= añoBuscado) {
añoMundialFifa += 4;//añoMundialFifa = añoMundialFifa + 4;
imprimir('<br>en este año hubo mundial: ' + añoMundialFifa);
}
imprimir('<br>ya no hay más mundiales');
</script>
</body>
</html>