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"
- Как удалить первый массив, но вернуть массив за вычетом первого элемента
- В моем примере я должен получить,
"item 2", "item 3", "item 4"когда удаляю первый элемент
alert(array.slice(1))илиarray.shift(); alert(array);