# \_.sortedLastIndexOf(array, value)

URL: https://caijiao.org/lodash/docs/Array/_.sortedLastIndexOf
Source: docs/lodash/docs/Array/_.sortedLastIndexOf.md
Description: _.sortedLastIndexOf(array, value)用于在已排序的数组中查找指定值的最后一个索引。

`_.sortedLastIndexOf(array, value)` 是 [Lodash](/lodash/) 库提供的 JavaScript 方法。它用于在已排序的数组中查找指定值的最后一个索引。

它的工作方式如下：

- `array`：要在其中查找索引的已排序数组。
- `value`：要查找其索引的值。

应用举例：

```javascript
const _ = require("lodash");

// 已排序的数组
const nums = [-6, -3, -3, 0, 1, 1, 4, 7];

// 要查找的值
const value = -3;

// 找到值的最后一个索引
const index = _.sortedLastIndexOf(nums, value);

console.log("值的最后一个索引:", index);
```

在这个例子中，我们使用 `_.sortedLastIndexOf` 方法找到了值 `-3` 在已排序数组 `nums` 中的最后一个索引位置。
