In-depth study of JavaScript array deduplication problem

In-depth study of JavaScript array deduplication problem

Preface πŸ‘€

Array deduplication should be a very common problem. Since it is common, we should learn about it!

Lest I be embarrassed if I don't know how to do it~ Hehe

Start researching πŸ±β€πŸ

Original 🧢

To deduplicate an array, my initial idea was this: define a new array, complete two layers of for loops, if the data appears for the first time, push it to the new array, if it is repeated, break it, use the value of j to be equal to the length of res to determine that the data is unique, and finally return the new array.

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	var res = []
	for(var i = 0; i < arr.length; i++){
		for(var j = 0; j < res.length; j ++){
			if(arr[i] === res[j]){
				break
			}
		}
		// If the data appears for the first time, then after executing the above for statement, the value of j should be equal to the length of res if(j === res.length){
			res.push(arr[i])
		}
	}
	return res;
}

console.log(unique(arr));

Optimizing the original method using indexOf ✍

Let's first take a brief look at indexOf:

The indexOf(item,start) method returns the position of a specified element in an array.

This method will search the array from beginning to end to see if it contains the corresponding element. The search starts at the start of the array or at the beginning of the array (when the start parameter is not specified). If an item is found, the position of the first occurrence of item is returned. The starting position has an index of 0.

If the specified element is not found in the array, -1 is returned.

Seeing this, everyone understands what we are taking advantage of, right? Yes, it is the bold sentence: If the specified element is not found in the array, -1 is returned .

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	var res = []
	for(var i = 0; i < arr.length; i++){
		if (res.indexOf(arr[i]) === -1) {
			res.push(arr[i])
		}
	}
	return res;
}

console.log(unique(arr));

Optimize again, filter method πŸŽ‰

As the name implies, filter means filtering. This method creates a new array. The elements in the new array are obtained by checking all elements that meet the conditions in the specified array.

Idea: Use filter instead of a layer of loop in conjunction with indexOf to achieve the filtering effect and directly return the deduplicated array.

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	var res = arr.filter(function(item,index,arr){
		return arr.indexOf(item) === index
	})
	return res;
}
console.log(unique(arr));

Change of thinking? Become an ordered array ✨

I wonder if those of you who have been playing Lecture Hall for a few days have had this feeling. When you see an array in a question, your eyes immediately glance forward to see if it is an ordered array or an unordered array.

Back to this question, we make the array to be deduplicated ordered, and the repeated data must be next to each other. Use a variable to store the previous element value, and then loop to determine whether the current value is the same as the previous element value. If not, add it to res.

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	var res = []
	var pre
	arr = arr.sort()
	for(var i = 0; i < arr.length; i++){
		if(!i || pre !== arr[i]){
			res.push(arr[i])
		}
		pre = arr[i]
	}
	return res;
}

console.log(unique(arr));

Optimize again, filter🧨

I just realized that filter can also rewrite the sorting here to make it more concise. Let's look at the code directly:

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	var res = arr.sort().filter(function(item,index,arr){
		return !index || item !== arr[index - 1]
	})
	return res;
}

console.log(unique(arr));

ES6, Set is coming 🧸

ES6 brings us many benefits, among which map and set are particularly outstanding.

Map objects store key-value pairs. Any value (object or primitive) can be used as a key or a value.

The Set object allows you to store unique values ​​of any type, whether primitive values ​​or object references.

So we can use this feature of Set to perform deduplication processing.

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

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

console.log(unique(arr));

Note: Set is an object, so it must be converted into an array for return.

If you understand destructuring assignment, you can simplify it a little bit more🧡

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']

function unique(arr){
	return [...new Set(arr)]
}

console.log(unique(arr));

If you want to know more about destructuring assignment, you can also read this first: Understanding and Application of Destructuring Operators

Previous study, recorded notes 🎨

Keep on being great (arrow functions) πŸ†

var arr = [1,1,2,3,4,5,6,7,4,3,'1',8,'3','1','3','66']
var unique = (arr) => [...new Set(arr)]
console.log(unique(arr));

Finally πŸ“–

From several lines of code at the beginning to one line of code at the end using arrow functions, it is enough to show that only by continuous learning can we write more elegant and concise code.

This is the end of this article about JavaScript array deduplication. For more relevant JavaScript array deduplication content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JS array deduplication details
  • Detailed discussion of several methods for deduplicating JavaScript arrays
  • JavaScript array deduplication solution
  • js implements array flattening
  • JavaScript data flattening detailed explanation
  • JavaScript Interview: How to implement array flattening method
  • 5 JavaScript Ways to Flatten Arrays
  • Introduction to JavaScript array deduplication and flattening functions

<<:  Detailed explanation of MySQL's FreeList mechanism

>>:  Analyze the role of rel="nofollow" in HTML and the use of rel attribute

Recommend

JavaScript commonly used array deduplication actual combat source code

Array deduplication is usually encountered during...

Zabbix monitors mysql instance method

1. Monitoring planning Before creating a monitori...

Related commands to completely uninstall nginx under ubuntu16.04

nginx Overview nginx is a free, open source, high...

Summary of common MySQL commands

Set change mysqlroot password Enter the MySQL dat...

How to build a standardized vmware image for kubernetes under rancher

When learning kubernetes, we need to practice in ...

Mysql Sql statement exercises (50 questions)

Table name and fields –1. Student List Student (s...

Detailed explanation of the loop form item example in Vue

Sometimes we may encounter such a requirement, th...

Introduction to MySQL <> and <=> operators

<> Operator Function: Indicates not equal t...

vue+rem custom carousel effect

The implementation of custom carousel chart using...

Example of how to quickly delete a 2T table in mysql in Innodb

Preface This article mainly introduces the releva...

MySQL performance optimization: how to use indexes efficiently and correctly

Practice is the only way to test the truth. This ...

How to start Vue project with M1 pro chip

Table of contents introduction Install Homebrew I...

Vue implements interface sliding effect

This article example shares the specific code of ...