¿Cuál sería la salida?
<body>
<h3>PROGRAMA: Seleccionar heroes</h3>
<script>
function saltarLinea()
{
document.write("<br>");
}
function imprimir(frase)
{
document.write(frase);
saltarLinea();
}
var heroes = ["Thor", "Batman", "Mujer Maravilla", "Superman"];
for(var nombre = 0; nombre < heroes.length; nombre++)
{
if(heroes[nombre] != "Superman"){
alert(heroes[nombre]);
}
}
alert("FIN");
</script>
</body>