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"
- So entfernen Sie das erste Array, geben aber das Array abzüglich des ersten Elements zurück
- In meinem Beispiel sollte ich bekommen,
"item 2", "item 3", "item 4"wenn ich das erste Element entferne
alert(array.slice(1))oderarray.shift(); alert(array);