📅  最后修改于: 2023-12-03 15:17:25.898000             🧑  作者: Mango
Lodash 是一个流行的 JavaScript 工具库,提供了很多常用的函数,简化了 JavaScript 编程的很多任务。Lodash 库中的 _.last()
方法用于获取数组中的最后一个元素。
_.last(array)
array
:需要获取最后一个元素的数组。返回数组中的最后一个元素,如果数组为空则返回 undefined
。
_.last([1, 2, 3]) // 返回 3
_.last([]) // 返回 undefined
undefined
。在项目中使用 Lodash 工具库之前,需要先安装 Lodash。
通过 npm 安装:
npm install lodash
通过 yarn 安装:
yarn add lodash
在使用 _.last()
方法之前,需要引入 Lodash。
// CommonJS 标准
const _ = require('lodash');
// ES6 标准
import _ from 'lodash';
const array = [1, 2, 3];
const lastElement = _.last(array);
console.log(lastElement); // 输出 3
以上是对 Lodash 的 _.last()
方法的简要介绍。通过使用它,我们可以轻松地获取数组中的最后一个元素,而不需要编写复杂的逻辑。