js 去重
Posted ypm_wbg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 去重相关的知识,希望对你有一定的参考价值。
function unique(array) {
let obj = {};
return array.filter((item, index, array) => {
let newItem = typeof item === ‘function‘ ? item : JSON.stringify(item)
return obj.hasOwnProperty( typeof item + newItem) ? false : (obj[typeof item + newItem] = true)
})
}
ES6
var array = [1, 2, 1, 1, ‘1‘];
function unique(array) {
return Array.from(new Set(array));
}
console.log(unique(array)); // [1, 2, "1"]
甚至可以再简化下:
function unique(array) {
return [...new Set(array)];
}
还可以再简化下:
var unique = (a) => [...new Set(a)]
此外,如果用 Map 的话:
function unique (arr) {
const seen = new Map()
return arr.filter((a) => !seen.has(a) && seen.set(a, 1))
}
以上是关于js 去重的主要内容,如果未能解决你的问题,请参考以下文章