This method is like _.indexOf except that it performs a binary search on a sorted array.
_.indexOf
array
The array to search.
The value to search for.
Returns the index of the matched value, else -1.
-1
_.sortedIndexOf([1, 1, 2, 2], 2);// => 2 Copy
_.sortedIndexOf([1, 1, 2, 2], 2);// => 2
This method is like
_.indexOf
except that it performs a binary search on a sortedarray
.