📅  最后修改于: 2023-12-03 14:55:34.316000             🧑  作者: Mango
在 Javascript 中查找数组的最后一项,可以通过以下方法实现:
const arr = [1, 2, 3, 4, 5];
const lastItem = arr[arr.length - 1];
console.log(lastItem); // Output: 5
上面的代码中,我们通过 arr.length - 1
访问了数组的最后一项。
const arr = [1, 2, 3, 4, 5];
const lastItem = arr.pop();
console.log(lastItem); // Output: 5
上面的代码中,我们使用了数组的 pop()
方法弹出了数组中最后一项并返回该项的值。
以上两种方法都可以用于查找数组中的最后一项,具体选择哪种方法则根据实际情况而定。
希望本文能对大家有所帮助。