This method is like sortedIndex 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).
sortedIndex
iteratee
value
array
The sorted array to inspect.
The value to evaluate.
The iteratee invoked per element.
Returns the index at which value should be inserted into array.
4.0.0
const objects = [{ 'n': 4 }, { 'n': 5 }]sortedIndexBy(objects, { 'n': 4 }, ({ n }) => n)// => 0 Copy
const objects = [{ 'n': 4 }, { 'n': 5 }]sortedIndexBy(objects, { 'n': 4 }, ({ n }) => n)// => 0
This method is like
sortedIndexexcept that it acceptsiterateewhich is invoked forvalueand each element ofarrayto compute their sort ranking. The iteratee is invoked with one argument: (value).