JavaScript的push()方法用于在數組的末尾添加一個或多個元素,并返回新的數組長度。
語法:
array.push(element1, element2, ..., elementN)
參數:
示例:
let fruits = ['apple', 'banana'];
fruits.push('orange'); // 添加一個元素
console.log(fruits); // 輸出: ['apple', 'banana', 'orange']
fruits.push('pear', 'grape'); // 添加多個元素
console.log(fruits); // 輸出: ['apple', 'banana', 'orange', 'pear', 'grape']
在上述示例中,首先定義了一個包含兩個元素的數組fruits
。然后,使用push()方法向數組末尾添加了一個元素'orange'
,并輸出了新的數組。接著,再次使用push()方法向數組末尾添加了兩個元素'pear'
和'grape'
,并輸出了最終的數組。