sortedLastIndex source npm

_.sortedLastIndex(array, value)

这个方法类似 _.sortedIndex,除了它返回在 value 中尽可能大的 index 位置。

参数

  1. array (Array)

    需要检索的已排序数组

  2. value (*)

    要评估位置的值

返回值 (number)

返回 value 应该在数组中插入的 index。

示例

_.sortedLastIndex([4, 5], 4);
// => 1