En el for tiene que comenzar en i=0
En el for tiene que comenzar en i=0
pienso lo mismo. la lista comienza en cero el mismo título da la respuesta
<!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>HEROES</title>
</head>
<body>
<h1>¡¡EMERGENCIA!!</h1>
<br>
<button>LLAMAR A HEROES</button>
<script>
function mensaje(msg) {
document.write("<big>" + msg + "</big>");
}
function salto() {
var saltoLinea = mensaje("<br><hr><br>");
}
function imprimir(frase) {
mensaje(frase);
salto();
}
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"];
function llamarHero() {
// HAY QUE INICIALIZAR LA VARIABLE CON 0, PARA QUE LLAME A SUPERMAN
for (var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
}
}
var button = document.querySelector("button");
button.onclick = llamarHero;
</script>
</body>
</html>