_.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。
相关用法
- underscore.js _.uniq()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.add()用法及代码示例
- Lodash _.last()用法及代码示例
- Lodash _.xor()用法及代码示例
- Lodash _.every()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.min()用法及代码示例
- Lodash _.max()用法及代码示例
- Lodash _.zip()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.maxBy()用法及代码示例
- Lodash _.minBy()用法及代码示例
- Lodash _.isEqual()用法及代码示例
- Lodash _.meanBy()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.xorBy()用法及代码示例
- Lodash _.zipObjectDeep()用法及代码示例
- Lodash _.findLast()用法及代码示例
- Lodash _.groupBy()用法及代码示例
注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.uniq() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。