温馨提示×

js push方法怎么使用

小亿
112
2023-08-01 09:31:41
栏目: 编程语言

JavaScript中的push()方法用于向数组的末尾添加一个或多个元素,并返回新的数组长度。下面是使用push()方法的示例:

let fruits = ['apple', 'banana'];
let newLength = fruits.push('orange', 'grape');
console.log(fruits);  // 输出: ['apple', 'banana', 'orange', 'grape']
console.log(newLength);  // 输出: 4

在上面的示例中,我们首先创建了一个名为fruits的数组,其中包含两个元素:‘apple’和’banana’。然后,使用push()方法将’orange’和’grape’添加到数组的末尾。最后,使用console.log()函数分别输出了修改后的数组和新的数组长度。

0