📜  Lodash _.union() 方法

📅  最后修改于: 2022-05-13 01:56:48.545000             🧑  作者: Mango

Lodash _.union() 方法

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

句法:

_.union(*arrays)

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

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

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

示例一:这里使用 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)


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)


输出:

[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]