lodash _.indexOf()方法用于获取数组中特定元素首次出现的索引。如果在数组中不存在fromIndex,则输出为负,并且不显示错误。
用法:
indexOf(array, value, fromIndex)
注意:如果在数组-1中找不到该值,则返回-1。
参数:该方法接受上面提到并在下面描述的三个参数。
- array:它是要在其中找到值的数组。
- value:它是要在数组中查看的值。
- fromIndex:它是索引,之后我们必须寻找值。
返回值:它返回数组中值的索引。如果找不到该值,则数组返回-1。
范例1:
Javascript
// Requiring the lodash library
const _= require("lodash");
// Original array
let array = [1,2,3,4]
// Printing original array
console.log("Array:",array)
// Looking for value 3 from index 0
let index = _.indexOf(array,3,0)
// 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,3,4]
// Printing original array
console.log("Array:",array)
// Looking for 3 from index 3
// it will return -1
let index = _.indexOf(array,3,3)
// Print Index of the value
console.log("Index:",index)
输出:
相关用法
- Javascript String indexOf()用法及代码示例
- JavaScript Array indexOf()用法及代码示例
- Node.js Buffer.indexOf()用法及代码示例
- Typescript String indexOf()用法及代码示例
- Typescript Array indexOf()用法及代码示例
- Javascript typedArray.indexOf()用法及代码示例
- Node.js indexOf()用法及代码示例
- Underscore.js _.indexOf()用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Lodash _.indexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。