> For the complete documentation index, see [llms.txt](https://lodash.shujuwajue.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lodash.shujuwajue.com/array/sortedindexof.md).

# \_.sortedIndexOf（获取索引值）

**语法：**

```javascript
_.sortedIndexOf(array, value)
```

**源代码链接：**[source](https://github.com/lodash/lodash/blob/4.17.10/lodash.js#L7993)

**npm包链接：**[npm package](https://www.npmjs.com/package/lodash.sortedindexof)

**描述：**

这个方法类似[`_.indexOf`](https://lodash.com/docs/4.17.10#indexOf)，除了它是在已经排序的数组`array`上执行二进制检索。

> 会先进行排序

**开始版本：**&#x34;.0.0

**参数：**

* `array (Array)`: 要搜索的数组。
* `value (*)`: 搜索的值。

**返回值：**

* `(number)`: 返回匹配值的索引位置，否则返回 -1。

**例子：**

```javascript
_.sortedIndexOf([4, 5, 5, 5, 6], 5);
// => 1
```
