洛达什 | _.sortedLastIndex() 方法
_.sortedLastIndex() 方法用于返回可以插入元素的数组的最高索引并保持其排序顺序。
句法:
_.sortedLastIndex(array, value)
参数:此方法接受上面提到的两个参数,如下所述:
- array:此参数保存已排序的数组。
- value:此参数保存要评估的值。
返回值:此方法返回值应插入数组的索引。
示例 1:
const _ = require('lodash');
let x = [1, 2, 3, 4, 4, 4, 5, 6, 6]
let index = _.sortedLastIndex(x, 4);
console.log(index);
在这里, const _ = require('lodash')
用于将 lodash 库导入文件。
输出:
6
示例 2:
const _ = require('lodash');
let x = ['a', 'b', 'c', 'd', 'e', 'e', 'e', 'f']
let index = _.sortedLastIndex(x, 'e');
console.log(index);
输出:
7
示例 3:
const _ = require('lodash');
let x = ['ajax', 'django', 'mongoDb',
'react', 'reactnative', 'yarn']
let index = _.sortedLastIndex(x, 'ruby');
console.log(index);
输出:
5
注意:这在普通 JavaScript 中不起作用,因为它需要安装库 lodash。
参考: https://lodash.com/docs/4.17.15#sortedLastIndex