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


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


_.uniq方法用于从所有给定数组(使用SameValueZero进行相等性比较)按顺序创建唯一值的数组。

用法:

_.union(array)

参数:此方法接受如上所述和以下描述的单个参数:

  • array:此参数保存要检查的数组。

返回值:此方法用于返回合并值的新数组。

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



javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = ([1, 2, 2, 3, 4, 3, 8, 6]);     
  
// Use of _.uniq()  
// method 
  
let gfg = _.uniq(y); 
      
// Printing the output  
console.log(gfg);

输出:

[ 1, 2, 3, 4, 8, 6 ]

范例2:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = (['a', 'b', 'c', 'e', 'd', 'd', 'g', 'i', 'i']);     
  
// Use of _.uniq()  
// method 
  
let gfg = _.uniq(y); 
      
// Printing the output  
console.log(gfg);

输出:

[ 'a', 'b', 'c', 'e', 'd', 'g', 'i' ]

范例3:

javascript

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
let y = (['apple', 'banana', 'banana', 'chikoo', 
          'Elderberry', 'Damson  
  
Date', 'guava', 'Damson Date']);     
  
// Use of _.uniq()  
// method 
  
let gfg = _.uniq(y); 
      
// Printing the output  
console.log(gfg);

输出:

['apple', 'banana', 'chikoo', 'Elderberry', 'Damson Date', 'guava']

注意:该代码在常规JavaScript中不起作用,因为它需要安装库lodash。




相关用法


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