1. Set Deduplicationfunction funSet(arr){ return Array.from(new Set(arr)); } 2. Double for loop to remove duplicatesfunction 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 duplicatesfunction 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 duplicatesfunction funInclude(arr){ let newArr = []; for(let i=0;i<arr.length;i++){ if (!newArr.includes(arr[i])){ newArr.push(arr[i]) } } return newArr; } 5. Filterfunction funFilter(arr){ return arr.filter(function(item,index){ return arr.indexOf(item,0)===index; }) } 6. Mapfunction 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; } 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:
|
<<: How to realize vertical arrangement of text using CSS3
>>: Several practical scenarios for implementing the replace function in MySQL
Table of contents Linux-Use MyCat to implement My...
VMware tools provides great convenience for using...
Text hiding code, hide a certain text in HTML Copy...
The virtual machine is in use or cannot be connec...
Core code /*-------------------------------- Find...
I just started learning about databases recently....
This article shares the specific code of JavaScri...
Here are some tips from training institutions and...
Summary HTML: element plus v-cloak CSS: [v-cloak]...
reason The mysql version that nacos's pom dep...
<br />There is no road in the world. When mo...
Today I learned to install MySQL, and some proble...
TeamCenter12 enters the account password and clic...
Table of contents 1. Scope 2. Scope Chain 3. Lexi...
1. MySQL self-connection MySQL sometimes needs to...