📜  Lodash _.last() 方法

📅  最后修改于: 2022-05-13 01:56:55.782000             🧑  作者: Mango

Lodash _.last() 方法

Lodash是一个基于 Underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。_. last()方法用于获取数组的最后一个元素,即第 (n-1) 个元素。

句法:

lodash.last( array )

参数:此函数接受单个参数,即数组。

返回值:返回数组的最后一个元素。

注意:在使用下面给出的代码之前,请通过npm install lodash安装 lodash 模块。

示例 1:

javascript
// Requiring the lodash library
const _ = require("lodash");
  
// Original array
let array1 = ["a", "b", "c", "d", "e"]
  
// Using _.last() method
let value = _.last(array1);
  
// Printing original Array
console.log("original Array1: ", array1)
  
// Printing the value
console.log("value: ", value)


javascript
// Requiring the lodash library
const _ = require("lodash");
  
// Original array
let array1 = []
  
// Using _.last() method
let value = _.last(array1);
  
// Printing original Array
console.log("original Array1: ", array1)
  
// Printing the value
console.log("value: ", value)


输出:

示例 2:

javascript

// Requiring the lodash library
const _ = require("lodash");
  
// Original array
let array1 = []
  
// Using _.last() method
let value = _.last(array1);
  
// Printing original Array
console.log("original Array1: ", array1)
  
// Printing the value
console.log("value: ", value)

输出: