Lodash – sortedIndex method

  • Post author:
  • Post category:Lodash
  • Post comments:2 Comments
Lodash - sortedIndex method

Syntax Of Lodash sortedIndex method

_.sortedIndex(array, value)

The Lodash sortedIndex method gets all but the last element of the array.

Arguments

  • array (Array) โˆ’ The sorted array to inspect.
  • value (*) โˆ’ The value to evaluate.

Output

  • (number) โˆ’ Returns the index at which value should be inserted into array.

Example

var _ = require('lodash');
var list = [1, 2, 3, 4, 5, 6, 8];

var result = _.sortedIndex(list, 7);
console.log(result);

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

6

Next Topic – Click Here

This Post Has 2 Comments

Leave a Reply