lodash _.indexOf()方法用於從最後一個元素獲取數組中特定元素的首次出現的索引。如果數組中不存在fromIndex,則輸出為負,並且不顯示錯誤。此方法類似於lodash _.indexOf,不同之處在於它從右到左遍曆數組的元素。
用法:
_.lastIndexOf(array, value, [fromIndex=array.length-1])
注意:如果在數組-1中找不到該值,則返回-1。
參數:該方法接受上麵提到的和下麵描述的三個參數。
- array:它是要在其中找到值的數組。
- value:它是要在數組中查看的值。
- fromIndex:它是索引,之後我們必須尋找值。
返回值:它返回數組中值的索引。如果找不到該值,則數組返回-1。
範例1:
Javascript
// Requiring the lodash library
const _= require("lodash");
// Original array
let array = [1, 2, 2, 3, 4]
// Printing original array
console.log("Array:",array)
// Looking for value 3 from Last index
let index = _.lastIndexOf(array,2)
// Printing the Index of the value
console.log("Index:",index)
輸出:
範例2:從特定索引中尋找一個值。
Javascript
// Requiring the lodash library
const _= require("lodash");
// Original array
let array = [1, 2, 2, 3, 4, 2]
// Printing original array
console.log("Array:",array)
// Looking for value 3 from Last index
let index = _.lastIndexOf(array,2,2)
// Printing the Index of the value
console.log("Index:",index)
輸出:
範例3:尋找一個不存在的值。
Javascript
// Requiring the lodash library
const _= require("lodash");
// Original array
let array = [1, 2, 2, 3, 4, 2]
// Printing original array
console.log("Array:",array)
// Looking for value 3 from Last index
let index = _.lastIndexOf(array,4,2)
// Printing the Index of the value
console.log("Index:",index)
輸出:
相關用法
- JavaScript Array lastIndexOf()用法及代碼示例
- Node.js Buffer.lastIndexOf()用法及代碼示例
- Typescript String lastIndexOf()用法及代碼示例
- Typescript Array lastIndexOf()用法及代碼示例
- Javascript String lastIndexOf()用法及代碼示例
- Javascript typedArray.lastIndexOf()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 Lodash _.lastIndexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。