Lodash _.indexOf

2021-09-22 09:38 更新

_.indexOf(array, value, [fromIndex=0])

使用SameValueZero 等值比較,返回首次 value 在數(shù)組array中被找到的 索引值, 如果 fromIndex 為負值,將從數(shù)組array尾端索引進行匹配。

引入版本

0.1.0

參數(shù)

  1. array (Array): 需要查找的數(shù)組。
  2. value (*): 需要查找的值。
  3. [fromIndex=0] (number): 開始查詢的位置。

返回值

(number): 返回 值value在數(shù)組中的索引位置, 沒有找到為返回-1。

例子

_.indexOf([1, 2, 1, 2], 2);
// => 1 
// Search from the `fromIndex`.
_.indexOf([1, 2, 1, 2], 2, 2);
// => 3


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號