search
HomeWeb Front-endJS TutorialExpansion and repair of arrays of reading notes in javascript framework design_javascript skills

1.indexOf and lastIndexOf methods:

Because IE7 will report an error when using indexOf on an array object, it needs to be rewritten for compatibility.

Copy code The code is as follows:

Array.prototype.lastIndexOf(item,index){
var n = this.length,i = (index==null||index>n-1)?n-1:index;
​if(i ​for(;i>=0;i--)
​​if(this[i] === item) //Congruent judgment, indexOf, lastIndexOf
   return i;
return -1;
}

2.shuffle method: shuffle the array.

Copy code The code is as follows:

function shuffle(target){
var i = target.length, j ,temp;
for(;i>0;j=parseInt(Math.random() * i), x = target[--i],target[i] = target[j],target[j]=x){} 
//Assume length=10, then Math.random()*10->[0,10), after parseInt, [0,9], randomly select one to exchange with the last item of the array. The second time through the loop, [0,8] is swapped with the penultimate item of the array.
return target;
}

3. Flattening of arrays: flatten, returning a one-dimensional array

Copy code The code is as follows:

function flatten(arr){
var result = [];
arr.forEach(function(item){
  if(Array.isArray(item)) result.concat(flatten(item));
   else  result.push(item);
});
return result;
}

4.unique method: deduplication operation on array

Interviewers like to ask about this method the most, because it has many implementation methods, the most common one is two for loops. The most commonly known thing is to use an object a, and then a for loop array arr. Each time if (a[arr[i]]) exists, if it does not exist, it will be pushed to your newly defined array result. The existence is proved and repeated, so there is no need to push it to the result. In this scheme, "123" and 123 will be considered the same. In fact, one is a string and the other is a number, so they should not be considered the same.

So the following method appears: [1,"1","1"]

Copy code The code is as follows:

if ((typeof obj[array[i]]) != (typeof array[i]) || obj[array[i]] != array[i]) {
a.push(array[i]);
obj[array[i]] = array[i];
}

//First determine whether the types are the same. If they are the same, determine whether their values ​​are equal. If they are not equal, save them. If they are equal, it proves that the value already exists before.

If the types are not the same, there are two situations,

In the first case, obj has already stored this data before, for example: obj[123] = 123, now array[i] = "123", at this time, typeof obj[array[i]]) is a number , and typeof array[i] is a string, so it is stored in the array.

The second case is that obj has not saved this data, for example: array[i] = "123", obj["123"] = undefind, then typeof obj[array[i]]) is typeof undefined = undefined, not equal to typeof array[i], stored in the array.

This method can solve the case where strings and numbers are the same, but it cannot solve the case where the objects are the same. For example: a = {1:2}, b ={2:1};

The first time through the loop, typeof obj[a] = undefined, typeof a = Object. Store obj[a] = a. In fact, it is obj[Object] = a;

In the second loop, typeof obj[b] is equal to typeof obj[Object], which is actually typeof a = object, typeof b = object. Therefore, it enters obj[array[i]] != array[i]|, That is obj[b]->obj[Object]->a! = b, so deposit

obj[b] = b; that is, obj[Object] = b; covering the previous obj[Object] = a;

In this case, all objects will have only the last object value stored.

When thinking about objects, I use this approach:

Copy code The code is as follows:

for(var i = 0; i for(var j = i 1; j If(temp[i] === temp[j]){
temp.splice(j, 1);
j--;
                                                                                                          }                 }
}
return temp;

5. Array sorting: sort method, if you want to sort objects, you can write your own compare(a,b){if(a.age>b.age) return 1;else return -1;},A .sort(compare).

6.min returns the minimum value of the array: return Math.min.apply(0,array);

7.unshift does not return the array length under ie6 and 7.

Copy code The code is as follows:
if([].unshift(1)!==1) //Add an item from the front to the empty array. Other browsers will return 1, but IE6 and 7 will not return the array length. Then execute the if statement
{
var _unshift = Array.prototype.unshift; //Function hijacking.
​Array.prototype.unshift = function(){
​​_unshift.apply(this,arguments);
Return this.length;
}
}

8. When splice takes one parameter, IE8 and below versions default the second parameter to 0, while other browsers use the array length.

Copy code The code is as follows:
if([1,2,3].splice(1).length == 0) //IE8 and below versions will be equal to 0, other versions will be equal to 3, enter if
{
var _splice = Array.prototype.splice;
​Array.prototype.splice = function(a){
  if(arguments.length == 1) //If there is only one parameter
  {
Return _splice.call(this,a,this.length);
  }else{
Return _splice.apply(this,arguments);
  }
}
}

This method will change the options of the array, so the push, pop, shift, and unshift of the array (these methods will also modify the options of the array) will all call this method to implement it.

There is something to note here:

Copy code The code is as follows:
var color = new Array('red','blue','yellow','black');
var color2 = color.splice(2,0,'brown','pink');
alert(color); // red, blue, brown, pink, yellow, black, start the operation on the yellow option. If the deletion is 0, the added option is inserted before yellow. Remember.


Here, please take a look at the difference between splice and slice, the return value, and the impact on the original array.
The above is a condensed version of the content of this section. Although it is concise, the key points are still there. I hope it will be helpful to everyone when reading this section

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment