# lodash sortedLastIndex
类似于 _.sortedIndex,除了返回 value 值在 array 中尽可能大的索引位置
概要
_.sortedLastIndex(array, value)
此方法类似于 _.sortedIndex
,除了它返回 value
值在 array
中尽可能大的索引位置(index)。
添加版本
3.0.0
参数
array (Array)
: 要检查的排序数组。value (*)
: 要评估的值。
返回值
(number): 返回 value值 应该在数组array中插入的索引位置 index。
例子
_.sortedLastIndex([4, 5, 5, 5, 6], 5);
// => 4