Lodash _.findIndex() 方法
Lodash 是 Node.js 中的一个模块,在 Underscore.js 之上工作。 Lodash 有助于处理数组、字符串、对象、数字等。
Loadsh.findIndex()方法用于查找元素第一次出现的索引。它与 indexOf 不同,因为它采用遍历数组每个元素的谓词函数。
句法:
findIndex(array, [predicate=_.identity], fromIndex)
参数:此方法接受三个参数,如上所述,如下所述:
- array:它是要在其中搜索值的数组。
- 谓词:它是遍历每个元素的函数。
- fromIndex:它是要在其之后搜索元素的索引。如果默认情况下未给出 from index,它将为 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)
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)
输出 :
示例 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)
输出: