var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"]; for( var i = 0; i < heroes.length; i++) { alert(heroes[i]); }
Al ser un arreglo se comienza con el 0
var heroes = ["Superman", "Thor", "Batman", "Mujer Maravilla"]; for( var i = 0; i < heroes.length; i++) { alert(heroes[i]); }
Al ser un arreglo se comienza con el 0
es correcto, el ciclo debe iniciar desde el valor i = 0
for( var i = 0; i < heroes.length; i++) {
alert(heroes[i]);
}