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