当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.sortedLastIndexOf()用法及代码示例


_.sortedLastIndexOf方法用于返回可以插入元素的数组的最高索引,并保持其排序顺序。此方法也类似于_.lastIndexOf,不同之处在于它对已排序的数组执行二进制搜索。
用法:

_.sortedLastIndexOf(array, value)

参数:该方法接受上述和以下所述的两个参数:

  • array:此参数保存要检查的数组。
  • value:此参数保存要搜索的值。

返回值:它返回匹配值的索引,否则为-1。
范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。

javascript

// Requiring the lodash library   
const _ = require("lodash");   
      
// Original array   
let y = [4, 5, 7, 7, 7]    
      
// Use of _.sortedLastIndexOf()   
// method   
let index = _.sortedLastIndexOf(y, 7);  
      
// Printing the output   
console.log(index);

输出:



4

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = ['p', 'q', 'r', 't', 't', 'u', 's', 't' ]  
      
// Use of _.sortedLastIndexOf()  
// method  
let index = _.sortedLastIndexOf(y, 't');  
      
// Printing the output  
console.log(index);

输出:

7

相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.sortedLastIndexOf() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。