从数组中获取唯一值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从数组中获取唯一值相关的知识,希望对你有一定的参考价值。

This code is used to get the unique values of an array.
  1. const array = [1, 1, 1, 3, 3, 2, 2];
  2.  
  3. var unique = array.filter((element, index) => {
  4. return array.indexOf(element) === index;
  5. });
  6.  
  7. //unique.toString();
  8. for(var i=0;i<unique.length;i++){
  9. console.log(unique[i]+" <br>");
  10. }

以上是关于从数组中获取唯一值的主要内容,如果未能解决你的问题,请参考以下文章

php 从数组中获取唯一值

如何从包含 JavaScript 中重复项的数组中获取唯一值数组? [复制]

从数组中获取唯一值

从数组中获取唯一值

ES6方式 - 按键从嵌套数组中获取唯一值

使用片段从另一个类获取值时出现 NullPointerException [重复]