Lodash是Node.js中的一个模块,可在Underscore.js的顶部使用。 Lodash帮助处理数组,字符串,对象,数字等。
Loadsh.findIndex()方法用于查找元素首次出现的索引。它与indexOf不同,因为它采用了遍历数组每个元素的谓词函数。
用法:
findIndex(array, [predicate=_.identity], fromIndex)
参数:此方法接受上述和以下所述的三个参数:
- array:它是要在其中搜索值的数组。
- predicate:它是遍历每个元素的函数。
- fromIndex:它是要在其后搜索元素的索引。如果默认情况下未提供from索引,则它将为0。
返回值:如果找到则返回元素的索引,否则返回-1。
注意:在使用下面给出的代码之前,请使用命令npm install lodash安装lodash模块。
范例1:当元素为搜索时,从索引0开始。
Javascript
// Requiring the lodash library
const _ = require('lodash');
// Original array
let array1 = [4, 2, 3, 1, 4, 2]
// Using lodash.findIndex
let index = _.findIndex(array1, (e) => {
return e == 1;
}, 0);
// Print original Array
console.log("original Array:", array1)
// Printing the index
console.log("index:", index)
输出:
范例2:当元素在某个索引“i”之后被查找时。这里的元素存在于数组中,但输出仍然为-1,因为它存在于索引3中,并且搜索从索引5开始。
Javascript
// Requiring the lodash library
const _ = require('lodash');
// Original array
let array1 = [4, 2, 3, 1, 4, 2]
// Using lodash.findIndex
let index = _.findIndex(array1, (e) => {
return e == 1;
}, 5);
// Print original Array
console.log("original Array:", array1)
// Printing the index
console.log("index:", index)
输出:
相关用法
- Javascript Array.findIndex()用法及代码示例
- Javascript Array findIndex()用法及代码示例
- Javascript typedArray.findIndex()用法及代码示例
- Underscore.js _.findIndex()用法及代码示例
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.clone()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Lodash _.findIndex() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。