📌  相关文章
📜  查找数组 JS 中的最后一项 - Javascript (1)

📅  最后修改于: 2023-12-03 14:55:34.316000             🧑  作者: Mango

查找数组 JS 中的最后一项 - Javascript

在 Javascript 中查找数组的最后一项,可以通过以下方法实现:

  1. 使用数组的 length 属性
const arr = [1, 2, 3, 4, 5];
const lastItem = arr[arr.length - 1];
console.log(lastItem); // Output: 5

上面的代码中,我们通过 arr.length - 1 访问了数组的最后一项。

  1. 使用数组的 pop() 方法
const arr = [1, 2, 3, 4, 5];
const lastItem = arr.pop();
console.log(lastItem); // Output: 5

上面的代码中,我们使用了数组的 pop() 方法弹出了数组中最后一项并返回该项的值。

以上两种方法都可以用于查找数组中的最后一项,具体选择哪种方法则根据实际情况而定。

希望本文能对大家有所帮助。