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