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


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


_.union()方法用于获取n个数组,并使用SameValueZero进行相等性比较,从所有给定数组中按顺序创建唯一值的数组。

用法:

_.union(*arrays)

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

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

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

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



Javascript

// Requiring the lodash library   
const _ = require("lodash");   
  
// Use of _.union() method  
let gfg = _.union([20, 12], [8, 15, 6]);  
        
// Printing the output   
console.log(gfg)

输出:

[20, 12, 8, 15, 6]

范例2:

Javascript

// Requiring the lodash library   
const _ = require("lodash");  
  
// Use of _.union() method  
let gfg = _.union([1, 2, 3], 
                  [3, 4, 5],  
                  [6, 2, 7]);  
        
// Printing the output   
console.log(gfg)

输出:

[1, 2, 3, 4, 5, 6, 7]

相关用法


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