目的
JavaScriptのshiftとunshiftの挙動を試しました。
配列の操作(shift unshift)
var numbers = ["one", "two", "three"];
console.log(numbers);
var shifted = numbers.shift(); // 配列の最初の要素を取り除く
console.log(numbers);
console.log(shifted);
numbers.unshift("four"); // 配列の先頭に追加
console.log(numbers);
結果
["one", "two", "three"]
["two", "three"]
one
["four", "two", "three"]