📅  最后修改于: 2023-12-03 15:36:18.793000             🧑  作者: Mango
在Javascript中,我们可以使用pop()方法将数组中的最后一个元素取出并返回。该方法会改变原数组。
可以将该方法应用于任何数组,而不必担心数组的长度。
const myArray = [1, 2, 3];
const lastElem = myArray.pop();
console.log(lastElem); // 输出3
console.log(myArray); // 输出[1, 2]
使用pop()方法时需要注意,如果数组为empty,则它将返回undefined并且不对原数组进行更改。
const emptyArray = [];
const lastElemOfEmptyArr = emptyArray.pop();
console.log(lastElemOfEmptyArr); // 输出undefined
console.log(emptyArray); // 输出[]
总之,pop()是一个非常有用的方法,可以让我们从数组末尾取出元素,而无需担心数组大小或位置。