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) SummarizeThis 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:
|
<<: Basic syntax of MySQL index
>>: How to switch directories efficiently in Linux
This article mainly introduces the implementation...
Achieve results html <div class="containe...
We all know that we can use the mkdir command to ...
We don't need to elaborate too much on the ad...
1. Download Maven Maven official website: http://...
Table of contents Cause of the incident Use Node ...
Macrotasks and Microtasks JavaScript is a single-...
Table of contents Overview 1. Menu and routing pr...
When threads execute concurrently, we need to ens...
1. What is positioning? The position attribute in...
Table of contents Bidirectional binding principle...
The command to delete images in docker is docker ...
Project scenario: There is a <ul> tag on th...
Table of contents Example 1 Example 2 Example 3 E...
Table of contents Vue3 + TypeScript Learning 1. E...