VOOZH about

URL: https://www.geeksforgeeks.org/javascript/lodash-_-sortedindexby-method/

⇱ Lodash _.sortedIndexBy() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lodash _.sortedIndexBy() Method

Last Updated : 2 Sep, 2024

Lodash _.sortedIndexBy() method is used to return the lowest index of the array where an element can be inserted and maintain its sorted order. In addition, it accepts iteratee which is invoked for value and each element of the array to compute their sort ranking. It uses the binary search.

Syntax:

_.sortedIndexBy(array, value, [iteratee=_.identity]);

Parameters:

  • array: This parameter holds the sorted array.
  • value: This parameter holds the value to evaluate.
  • Iteratee: This is the function that iterates over each element.

Return Value:

  • This method returns the index at which the value should be inserted into the array.

Example 1: In this example, we are getting the index at which we can insert the given value.

Output:

1

Example 2: In this example, we are getting the index at which we can insert the given value.

Output:

2

Example 3: In this example, we are getting the index at which we can insert the given value.

Output:

3

Note: This will not work in normal JavaScript because it requires the library lodash to be installed.

Comment