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);