


Sometimes you encounter this kind of requirement, and you need to delete the duplicate elements in the array and keep only one. The first thing that comes to mind is probably to use two for loops to compare and remove duplicate elements. The code is as follows:
Method 1:
Array.prototype.distinct = function(){
var arr = [],
len = this.length;
for ( var i = 0; i for( var j = i 1; j if( this[i] === this [j] ){
j = i;
}
}
arr.push( this[i] );
}
return arr;
};
If you use method 1 and encounter a lot of data, the performance will be much worse. Then please continue to see the method below.
Method 2:
Array.prototype.distinct = function(){
var self = this,
arr = self.concat().sort(); // Create a new array and sort it
arr.sort(function( a, b ){
if( a === b ){
var n = self.indexOf( a ); //Get the index value
self.splice( n, 1 );
}
}) ;
return self;
};
Method 2 uses sort’s custom callback function, and also uses indexOf, a method that IE6/7/8 does not support. Of course, indexOf can be simulated by yourself, but the bigger problem is that there are differences between the sort method of IE6/7/8 and standard browsers. There are many traps in custom callback functions using the sort method in IE6/7/8. The code of the custom sort callback function above will directly report a "missing number" error in IE6/7/8. The return of the callback function If it is NaN, this error will be reported, because theoretically the sort callback function can only return integers. Even if the problem of return value is ignored, there are still other problems. In the end, there is not too much to worry about. Method 2 does not work in IE6/7/8.
Looked at method 3 from Fool's Wharf, here is his code:
Array.prototype.delRepeat=function(){
var newArray=[];
var provisionalTable = {};
for (var i = 0, item; (item= this[i]) != null; i ) {
if (!provisionalTable[item]) {
newArray.push(item);
provisionalTable[item] = true;
}
}
return newArray;
};
Method 3 uses a temporary object to store the elements of the array. If duplicate array elements are encountered, they will be ignored. However, if you encounter the following array:
var arr = [ 'firefox', 1, '1 ' ];
If you use method 3 in the above array, 1 and "1" will be mistakenly regarded as duplicate elements and deleted, so method 3 has been slightly modified to solve this bug.
Modified version of method 3:
Array.prototype.distinct = function(){
var arr = [],
obj = {},
i = 0,
len = this.length,
result;
for( ; i result = this[i];
if( obj[result] !== result ){
arr.push( result );
obj[result] = result;
}
}
return arr;
};
Then I read the comments at the end of the Fool’s Wharf article. This method is the same as the method provided by Rekey, but this method also has bugs. If you encounter such a 2B array, it will be a disaster:
var arr = [ 'firefox', 1, '1 ', 1 ];
Using the modified version of method 3 for the above array, the last three elements will not be deleted. However, this kind of array is a bit extreme. If you encounter data with the same string literal and number, you should pre-process it to avoid this. BUG. The method using temporary objects is slightly faster than sort in standard browsers, and the algorithm of the sort method in each browser should also be different.

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
