从数组中获取唯一值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从数组中获取唯一值相关的知识,希望对你有一定的参考价值。
This code is used to get the unique values of an array.
const array = [1, 1, 1, 3, 3, 2, 2]; var unique = array.filter((element, index) => { return array.indexOf(element) === index; }); //unique.toString(); for(var i=0;i<unique.length;i++){ console.log(unique[i]+" <br>"); }
以上是关于从数组中获取唯一值的主要内容,如果未能解决你的问题,请参考以下文章