Lodash _.lastIndexOf

2021-09-24 09:41 更新

_.lastIndexOf(array, value, [fromIndex=array.length-1])

這個方法類似_.indexOf ,區(qū)別是它是從右到左遍歷array的元素。

引入版本

0.1.0

參數(shù)

  1. array (Array): 要搜索的數(shù)組。
  2. value (*): 要搜索的值。
  3. [fromIndex=array.length-1] (number): 開始搜索的索引值。

返回值

(number): 返回匹配值的索引值,否則返回 -1。

例子

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


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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號