$ 0 0 配列に値を追加 末尾に追加(push) const array = [1, 2, 3, 4, 5, 6]; array.push('追加した要素'); console.log(array); //…