数组去重Set也可实现

Posted meiqiyuanzi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组去重Set也可实现相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>数组去重</title>
</head>

<body>
  <script>
    // 数组去重
    // 方法一(原理性):
    var arr = [2, 5, 12, 21, 54, 22, 61, 6, 1, 72, 4, 1, 3, 5, 3, 51, 4, 2, 22]
    var result = []
    for (var i = 0; i < arr.length; i++) {
      var flag = true
      for (var j = 0; j < result.length; j++) {
        if (arr[i] === result[j]) {
          flag = false
          break
        }
      }
      if (flag === true) {
        result[result.length] = arr[i]
      }
    }
    // 方法二:
    // var result = new Set(arr)
    console.log(result)
  </script>
</body>

</html>

 

以上是关于数组去重Set也可实现的主要内容,如果未能解决你的问题,请参考以下文章

一行代码实现数组去重(ES6)

ES6 set和map数据结构对对象数组去重简单实现

ES6使用Set实现数组去重

set实现数组去重

JS 利用集合set实现 数组去重 交集 并集 差集

Set 数组去重