es6 之前的方法
let array = [1, 2, 3, 4, 4, 5, 5, 6]
~function uniq() {
let result = []
let hash = {}
for (let i=0; i<array.length; i++) {
hash[array[i]] = true
}
for (let key in hash) {
result.push(key)
}
console.log(result)
return result
}()
这里 ~function的作用就是将函数变成立即执行函数。
!function(){}() 和 +function(){}() 的作用和 ~function 的作用是一样的
我们也可以采用这种方式(function(){})()
但是该方法有巨大的弊端,去重数组中不能有对象,而且该方法返回的结果中都是字符串
es6 之后的方法
es6 新增了 set 类型,所以我们可以这么做
let a = {a: 11}
let array = [0, 1, '1', '22', 22, a, a, 66]
~function uniq() {
return Array.from(new Set(array)) // 或者使用展开运算符的写法 [... new Set(array)]
}()