JavaScript pushで配列の末尾に要素を追加する
環境
Google Chrome 120.0.6099.225(Official Build) (64 ビット)
構文
const 配列名 =[要素1,要素2,…
配列名.push(要素)
push関数を使って配列の末尾に要素を追加します。
使用例
const arr = [44, 33, 22, 11] arr.push(8) console.log(arr) arr.push(9, 10) console.log(arr)
実行結果
[ 44, 33, 22, 11, 8 ]
[
44, 33, 22, 11,
8, 9, 10
]