當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Lodash _.indexOf()用法及代碼示例


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)

輸出:

相關用法


注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Lodash _.indexOf() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。