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'
,并输出了最终的数组。