arreglo en javascript

Iniciado por bibisita, 22 Junio 2010, 03:03 AM

0 Miembros y 1 Visitante están viendo este tema.

bibisita

Hola estoy haciendo un curso de javascript y me han puesto a hacer un trabajo pero me hace falta por hacer un ejercicio y agradezco a quien me pueda ayudar con el ejercicio.

Ejercicio: Escriba un ejemplo de arreglo y con el ejemplo que hizo escriba aparte  la sentencia necesaria para borrar el segundo elemento del arreglo.

~ Yoya ~

Aunque no se mucho de javascript, esta facir esa xD..
Código (javascript) [Seleccionar]
var arreglo = new Array("Cereza", "Uva", "Manzana", "Fresa");
for(i=0;i< arreglo.length;i++){
document.write (arreglo[i]);
}
delete arreglo[1];
for(i=0;i< arreglo.length;i++){
document.write (arreglo[i]);
}
Mi madre me dijo que estoy destinado a ser pobre toda la vida.
Engineering is the art of balancing the benefits and drawbacks of any approach.

bibisita