JavaScript的push方法用于向数组的末尾添加一个或多个元素,并返回修改后的数组的新长度。
语法:
array.push(element1, element2, …, elementX)
参数:
element1, element2, …, elementX:需要添加到数组末尾的元素。
返回值:
push方法返回修改后的数组的新长度。
示例:
let fruits = ['apple', 'orange'];
fruits.push('banana');
console.log(fruits); // ['apple', 'orange', 'banana']
let numbers = [1, 2, 3];
numbers.push(4, 5);
console.log(numbers); // [1, 2, 3, 4, 5]
在上述示例中,我们使用push方法向数组fruits和numbers中添加了新的元素,并打印出修改后的数组。