服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

这个方法就像_.indexOf,不同的是它遍历array 从右到左的元素。

初始

0.1.0

参数
  1. array (Array):要检查的数组。
  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