Detailed discussion of several methods for deduplicating JavaScript arrays

Detailed discussion of several methods for deduplicating JavaScript arrays

1. Set Deduplication

 function funSet(arr){
   return Array.from(new Set(arr));
 }

2. Double for loop to remove duplicates

function funFor(arr){
  for(let i=0,len=arr.length;i<len;i++){
    for(let j=i+1,len=arr.length;j<len;j++){
      if (arr[i]===arr[j]){
        arr.splice(j,1);
        len--;
        j--;
      }
    }
  }
  return arr;
}

3. Use indexOf to remove duplicates

function funIndex(arr){
  let newArr = [];
  for(let i=0;i<arr.length;i++){
    if (newArr.indexOf(arr[i])===-1){
      newArr.push(arr[i])
    }
  }
  return newArr;
}

4. Use icludes to remove duplicates

function funInclude(arr){
  let newArr = [];
  for(let i=0;i<arr.length;i++){
    if (!newArr.includes(arr[i])){
      newArr.push(arr[i])
    }
  }
  return newArr;
}

5. Filter

function funFilter(arr){
  return arr.filter(function(item,index){
    return arr.indexOf(item,0)===index;
  })
}

6. Map

function funMap(arr){
  let map = new Map();
  let newArr = [];
  for(let i=0,len=arr.length;i<len;i++){
    if (map.has(arr[i])){
      map.set(arr[i],true);
    }else{
      map.set(arr[i],false);
      newArr.push(arr[i]);
    }
  }
  return newArr;
}

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Five common ways to remove duplicate arrays in JavaScript
  • Introduction to JavaScript array deduplication and flattening functions
  • JS array deduplication details
  • JavaScript array deduplication solution
  • Detailed explanation of JavaScript array deduplication
  • Seven ways to implement array deduplication in JS

<<:  How to realize vertical arrangement of text using CSS3

>>:  Several practical scenarios for implementing the replace function in MySQL

Recommend

How to use MyCat to implement MySQL master-slave read-write separation in Linux

Table of contents Linux-Use MyCat to implement My...

How to hide a certain text in HTML?

Text hiding code, hide a certain text in HTML Copy...

Problems and solutions when installing and using VMware

The virtual machine is in use or cannot be connec...

mysql solves the problem of finding records where two or more fields are NULL

Core code /*-------------------------------- Find...

mysql-8.0.16 winx64 latest installation tutorial with pictures and text

I just started learning about databases recently....

JavaScript implementation of classic snake game

This article shares the specific code of JavaScri...

A brief discussion on what situations in MySQL will cause index failure

Here are some tips from training institutions and...

How to prevent Vue from flashing in small projects

Summary HTML: element plus v-cloak CSS: [v-cloak]...

Solution to nacos not being able to connect to mysql

reason The mysql version that nacos's pom dep...

Web designer is a suitable talent

<br />There is no road in the world. When mo...

Summary of Problems in Installation and Usage of MySQL 5.7.19 Winx64 ZIP Archive

Today I learned to install MySQL, and some proble...

Solution to the 404/503 problem when logging in to TeamCenter12

TeamCenter12 enters the account password and clic...

Javascript scope and closure details

Table of contents 1. Scope 2. Scope Chain 3. Lexi...

In-depth understanding of MySQL self-connection and join association

1. MySQL self-connection MySQL sometimes needs to...