var myarray = ["item 1", "item 2", "item 3", "item 4"];
//removes the first element of the array, and returns that element.
alert(myarray.shift());
//alerts "item 1"
//removes the last element of the array, and returns that element.
alert(myarray.pop());
//alerts "item 4"
- Cómo eliminar la primera matriz pero devolver la matriz menos el primer elemento
- En mi ejemplo, debería obtener
"item 2", "item 3", "item 4"
cuando elimino el primer elemento
alert(array.slice(1))
oarray.shift(); alert(array);