JavaScript shiftで配列の先頭に要素を削除する
環境
Google Chrome 120.0.6099.225(Official Build) (64 ビット)
構文
const 配列名 =[要素1,要素2,…
配列名.shift()
shift関数を使って配列の先頭に要素を削除します。
使用例
const arr = [45, 36, 2, 18] arr.shift() console.log(arr) arr.shift() console.log(arr)
実行結果
[ 36, 2, 18 ]
[ 2, 18 ]