_.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]
相关用法
- Collect.js union()用法及代码示例
- underscore.js _.union()用法及代码示例
- PHP Ds\Set union()用法及代码示例
- PHP Ds\Map union()用法及代码示例
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
注:本文由纯净天空筛选整理自sanjoy_62大神的英文原创作品 Lodash _.union() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。