Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,字符串,对象,数字等。
_.findLastIndex()函数用于从数组的右侧查找元素。因此,给出该元素在数组中最后一次出现的索引。
用法:
findLastIndex(array, [predicate=_.identity], fromIndex);
参数:
- array:它是原始数组。
- predicate:它是遍历每个元素的函数。
- fromIndex:它是开始搜索的索引。如果未给出from Index,则默认为n-1,其中n是数组的长度。
返回值:如果找到则返回元素的索引,否则返回-1。
注意:使用命令安装lodash模块npm install lodash
在使用下面给出的代码之前。
范例1:
// Requiring the lodash library
const _ = require("lodash");
// Original array
let array1 = [4, 2, 3, 1, 4, 2]
// Using lodash.findLastIndex
let index = _.findLastIndex(array1, (e) => {
return e == 2;
});
// Original Array
console.log("original Array:", array1)
// Printing the index
console.log("index:", index)
输出:
范例2:当元素存在于数组中但输出为-1时,因为它出现在索引之后。这里fromIndex是2。
// Requiring the lodash library
const _ = require("lodash");
// Original array
let array1 = [4, 2, 3, 1, 4, 2]
// Using lodash.findLastIndex
let index = _.findLastIndex(array1, (e) => {
return e == 1;
}, 2);
// Original Array
console.log("original Array:", array1)
// Printing the index
console.log("index:", index)
输出:
范例3:给定对象数组时。
// Requiring the lodash library
const _ = require("lodash");
// Original array
let array1 = [
{ "a":1, "b":2 },
{ "b":4 },
{ "a":1 }
]
// Using lodash.findLastIndex
let index = lodash.findLastIndex(array1, (e) => {
return e.b == 2;
}, 2);
// Original Array
console.log("original Array:", array1)
// Printing the index
console.log("index:", index)
输出:
相关用法
- Lodash _.initial()用法及代码示例
- Lodash _.dropRightWhile()用法及代码示例
- Lodash _.difference()用法及代码示例
- Lodash _.dropRight()用法及代码示例
- Lodash _.tail()用法及代码示例
- Lodash _.concat()用法及代码示例
- Node.js lodash.sortBy()用法及代码示例
- Underscore.js _.findLastIndex()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.findIndex()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Lodash _.findLastIndex() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。