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


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


_.sortedUniqBy方法用于返回可以插入元素的数组的最低索引,并保持其排序顺序。此外,此方法类似于_.uniqBy,但它是为排序数组设计和优化的。

用法:

_.sortedUniqBy(array, [iteratee])

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

  • array:此参数保存要检查的数组。
  • [iteratee = _。identity](函数):此参数保存每个元素调用的iteratee。

返回值:此方法用于返回新的重复自由数组。

范例1:在这里,const _ = require(‘lodash’)用于将lodash库导入文件中。



javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = ([1.1, 1.2, 2.1, 2.3, 2.4, 3.5]) 
      
// Use of _.sortedUniqBy()  
// method  
let index =  _.sortedUniqBy(y, Math.floor);  
      
// Printing the output  
console.log(index);

输出:

[1.1, 2.1, 3.5]

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = ([112.1, 112.2, 122.1, 122.3, 122.4, 132.5]) 
      
// Use of _.sortedUniqBy()  
// method  
let index =  _.sortedUniqBy(y, Math.floor);  
      
// Printing the output  
console.log(index);

输出:

[112.1, 112.1, 132.5]

注意:在正常的JavaScript中这将无法正常工作,因为它需要安装库lodash。

相关用法


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