es6实现:
[...new Set([1,2,3,1,‘a‘,1,‘a‘])];
Array.from(new Set(
[1,2,3,1,‘a‘,1,‘a‘]));
第一个方法里“...”叫做扩展运算符,内部使用for...of
循环,所以也可以用于 Set 结构。
es5实现:
[1,2,3,1,‘a‘,1,‘a‘].filter(function(ele,index,array){ return index===array.indexOf(ele) })
Posted 方小川
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组去重最简方法相关的知识,希望对你有一定的参考价值。
es6实现:
[...new Set([1,2,3,1,‘a‘,1,‘a‘])];
Array.from(new Set(
[1,2,3,1,‘a‘,1,‘a‘]));
第一个方法里“...”叫做扩展运算符,内部使用for...of
循环,所以也可以用于 Set 结构。
es5实现:
[1,2,3,1,‘a‘,1,‘a‘].filter(function(ele,index,array){ return index===array.indexOf(ele) })
以上是关于数组去重最简方法的主要内容,如果未能解决你的问题,请参考以下文章