服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

获取在其中第一次出现的索引,与value中被发现array使用SameValueZero的相等比较。如果fromIndex为负值,则将其用作从结尾开始的偏移量array

初始

0.1.0

参数
  1. array (Array):要检查的数组。
  2. value (*):要搜索的值。
  3. [fromIndex=0] (number):从中搜索的索引。
返回

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

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