> 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/sortedlastindexof.md).

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

**语法：**

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

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

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

**描述：**

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

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

**参数：**

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

**返回值：**

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

**例子：**

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