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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。