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()函數分別輸出了修改后的數組和新的數組長度。