This method is like _.sortedLastIndex except that it accepts iteratee which is invoked for value and each element of array to compute their sort ranking. The iteratee is invoked with one argument: (value).
_.sortedLastIndex
iteratee
value
array
The sorted array to inspect.
The value to evaluate.
Optional
The iteratee invoked per element.
Returns the index at which value should be inserted into array.
// using the `_.property` iteratee shorthand_.sortedLastIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x');// => 1 Copy
// using the `_.property` iteratee shorthand_.sortedLastIndexBy([{ 'x': 4 }, { 'x': 5 }], { 'x': 4 }, 'x');// => 1
This method is like
_.sortedLastIndex
except that it acceptsiteratee
which is invoked forvalue
and each element ofarray
to compute their sort ranking. The iteratee is invoked with one argument: (value).