首页 > 编程语言 > 详细

[Tips + Javascript] Make a unique array

时间:2019-01-04 23:30:59      阅读:160      评论:0      收藏:0      [点我收藏+]

To make an array uniqued, we can use Set() from Javascript.

const ary = ["a", "b", "c", "a", "d", "c"];
console.log(new Set(ary));

技术分享图片

We can see that all the duplicated value have been removed,  now the only thing we need to do is convert Set to Array.

 

So we have Array.from:

const ary = ["a", "b", "c", "a", "d", "c"];
const res = uniqueArray(ary);
console.log(res);

function uniqueArray(ary) {
  return Array.from(new Set(ary));
}

 

Or even shorter:

const ary = ["a", "b", "c", "a", "d", "c"];
const res = uniqueArray(ary);
console.log(res);

function uniqueArray(ary) {
  return [...new Set(ary)];
}

 Whichever you prefer.

[Tips + Javascript] Make a unique array

原文:https://www.cnblogs.com/Answer1215/p/10222975.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!