Detailed explanation of JavaScript array deduplication

Detailed explanation of JavaScript array deduplication

1. Array deduplication

      /**************************************************
         ╚description:
        ╚Author: Qilin Society╚Time: 2021-09-13 22:26:21
        ╚Name: V1.0.5
        ***************************************************/
        var obj = ['Qilin','She','CC','DD','Qilin','She','11',11]
            //Define a new array var s = [];
            //Traverse the array for(var i=0;i<obj.length;i++){
            if(s.indexOf(obj[i]) == -1){ //Judge whether it exists in the s array, if not, push it into the s array s.push(obj[i]);
             }
            }
        console.log(s); 

2. Deduplication of objects in arrays

       /**************************************************
         ╚description:
         ╚Author: Qilin Society╚Time: 2021-09-13 22:26:21
         ╚Name: V1.0.5
        ***************************************************/
        var old_data = [
            { name:'ccc', age:'18' },
            { name:'peng', age:'18' }, //Remove duplicate peng { name:'aaa', age:'18' },
            { name:'peng', age:'18' },
          ]
          // Method 1: Use the object access attribute method to determine whether the key exists in the object
          var result = [];
          var obj = {};
          old_data.forEach(function (data) {
          if(!obj[data.name]){
          result.push(data);
          obj[data.name] = true;
            }
          })
          console.log(result); 

3. Modify the value of another field based on the same field in the array

      /**************************************************
        ╚description:
        ╚Author: Qilin Society╚Time: 2021-09-13 22:26:21
        ╚Name: V1.0.5
        ***************************************************/
        var oldData = [
            { name:'cccc', age:'5656' },
            { name:'cccc', age:'22dddsada' },
            { name:'cccc', age:'22dddsada' },
            { name:'aaaa', age:'32' },
            { name:'aaaa', age:'2dasdasdas2' },
          ]
          var newArr = [];
          for (var i = 0; i < oldData.length; i++) {
          var item = oldData[i];
          var isExists = false;
          for (var j = 0; j < newArr.length; j++) {
          var item2 = newArr[j];
          if (item2.name == item.name) {
          isExists = true;
          break;
                }
            }
          if (isExists) {
          // Find the same here, change the same if(item.name == 'cccc'){
          item.age = '222222'
          item2.age = '222222'
                }else{
          item.age = '3333'
          item2.age = '3333'
                }
          newArr.push(item2);
          continue;
            }
          newArr.push(item);
          }
          console.log(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
  • Detailed discussion of several methods for deduplicating JavaScript arrays
  • JavaScript array deduplication solution
  • Seven ways to implement array deduplication in JS

<<:  Basic syntax of MySQL index

>>:  How to switch directories efficiently in Linux

Recommend

js method to delete a field in an object

This article mainly introduces the implementation...

Drop-down menu implemented by HTML+CSS3+JS

Achieve results html <div class="containe...

Briefly understand the two common methods of creating files in Linux terminal

We all know that we can use the mkdir command to ...

Detailed steps for developing WeChat mini-programs using Typescript

We don't need to elaborate too much on the ad...

A complete example of implementing a timed crawler with Nodejs

Table of contents Cause of the incident Use Node ...

JavaScript macrotasks and microtasks

Macrotasks and Microtasks JavaScript is a single-...

CSS positioning layout (position, positioning layout skills)

1. What is positioning? The position attribute in...

Detailed explanation of angular two-way binding

Table of contents Bidirectional binding principle...

How to delete an image in Docker

The command to delete images in docker is docker ...

Share JS four fun hacker background effect codes

Table of contents Example 1 Example 2 Example 3 E...

Vue3 + TypeScript Development Summary

Table of contents Vue3 + TypeScript Learning 1. E...