JavaScript中的Array对象有一个push()方法,用于向数组的末尾添加一个或多个元素,并返回新数组的长度。
语法:array.push(element1, element2, …, elementN)
参数:
示例:
let arr = [1, 2, 3];
arr.push(4);
console.log(arr); // 输出:[1, 2, 3, 4]
arr.push(5, 6);
console.log(arr); // 输出:[1, 2, 3, 4, 5, 6]
在上述示例中,首先创建了一个数组arr
,然后使用push()方法向数组的末尾添加了元素4,然后再次使用push()方法向数组的末尾添加了元素5和6。最终的数组内容为[1, 2, 3, 4, 5, 6]
。