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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。