


There are still many methods for array operations in js. Today I suddenly thought of summarizing them, which can be regarded as reviewing the past and learning the new. However, I will not explain every method, I will just select some of them.
First of all, let’s talk about the push and pop methods. These two methods will only push or pop the array from the end, and operate on the original array. Any changes will affect the operated array. push(args) can push multiple elements at a time and return the updated array length. The pop() function will only pop up the last element at the end each time and return the popped element. If pop() is called on an empty array, it will return undefined. If the parameter is an array, the entire array is pushed into the original array as one element. It will not produce the "splitting phenomenon" similar to when concat merges arrays. Let's look at the example below
Example 1:
var oldArr=[1,2,3];
alert(oldArr.push(4,[5,6]))–>5 (only [5,6] will be calculated as one element here, and the updated array length 5 will be returned)
At this time oldArr–>[1,2,3,4,[5,6]]
alert(oldArr.pop())–>[5,6](The last element [5,6] pops here, Instead of 6)
oldArr–>[1,2,3,4]
oldArr.pop()–>4
oldArr.pop()–>3
oldArr .pop()–>2
oldArr.pop()–>1
oldArr.pop()–>undefined (empty array popup)
Now after talking about push and pop, let’s look at unshift and shift
, both methods operate on the head of the array. Others are basically similar to push and pop, but in IE, the unshift method returns undefined
Example 2 :
var oldArr2=[1,2];
oldArr2.unshift(3)–>undefined
At this time oldArr2 is–>[3,1,2]
oldArr2 .shift()–>3
At this time, oldArr2 is [1,2]
Let’s take a look at the more powerful splice, which can be used to add and delete elements at random positions in the array. Its operation is also in the original There are
Modify on the array
splice(start,deleteCnt,args) The start in splice(start,deleteCnt,args) means to start the operation subscript, deleteCnt means to delete starting from the start subscript (including the element) The number of elements, the deletion operation returns the deleted elements. args represents the elements used to replace deleted elements (can have multiple parameters). start and deleteCnt must be numbers. If they are not numbers, try to convert them. If the conversion fails, it will be treated as 0. splice must have at least one start element, otherwise no operation will be performed. The absence of deleteCnt means deleting start and all subsequent elements (under IE, 0 will not be deleted). start can be a negative number, which means starting from the end of the right side of the array. If deleteCnt is negative, no deletion will be performed because it is impossible to delete negative elements.
Now that the explanation is over, let’s take a look at an example. You may be able to understand it better through examples
Example 3:
var oldArr3=[1,2];
oldArr3.splice()–>””(returns an empty string, does not perform any operation, after the operation oldArr3–>[1,2])
oldArr3.splice(“”)–> [1,2]("" failed to convert to a number and returned 0, so delete 1,2, oldArr3–>[] after the operation, but it is a bit disgusting under IE and does not do any operation)
oldArr3.splice(" 1a")–>Same as above
odlArr3.splice(0,2)–>[1,2]("Starting from the element with subscript 0, delete two elements 1,2, so after deletion oldArr3–> [])
oldArr3.splice(0,-1)–>””(Delete -1 elements starting from the 0 subscript, so no operation is done. After the operation, oldArr3–>[1,2] )
oldArr3.splice(1,1)–>2 (Delete 1 element starting from index 1, that is, delete 2, so after deletion, oldArr3–>[1])
oldArr3.splice(1 ,4)–>2 (Delete 4 elements starting from subscript 1, and there is only 1 element starting from 1, so delete 2, so after deletion, oldArr3–>[1])
oldArr3.splice(-1, 0,3)–>””(Delete 0 elements starting from subscript -1, which is element 2, and then add element 3, so after the operation oldArr3–>[1,3,2])
oldArr3.splice (-1,1,3)–>2 (Delete 1 element starting from subscript -1, which is 2 elements, and then add element 3. After the operation, it is oldArr3–>[1,3])
OK Next Let's start with concat. This method is used to connect two or more arrays. The array will not change the original array and will only return a new array. If the parameter is an array during the connection, the elements in the array will be connected. It is relatively simple to start the example directly
Example 4:
var oldArr4=[1,2];
oldArr4.concat(3,4)–>[1,2 ,3,4]
oldArr4.concat(3,4,[5,6])–>[1,2,3,4,5,6](What is added here is [5,6] Element 5 and element 6)
oldArr4.concat(3,[4,[5,6]])–>[1,2,3,4,[5,6]](the innermost layer here The entire elements [5,6] are used to add, not to split)
Let’s talk about the sorting method in the array sort
sort(function) is to sort the original array and will not generate a new array . By default, sort() without parameters converts the elements in the array into strings for comparison. When comparing, the characters are sorted according to the order in the character encoding. Each character has a unique encoding corresponding to it.
Look at the following example
var oldArr5=[3,1,5,7,17] Looking at this general concept, when sorting oldArr5, oldArr5.sort() will follow Sorting the numbers from small to large returns [1,3,5,7,17], but if you look at the result, it actually returns [1,17,3,5,7] because they are converted into strings during comparison. Then compare the strings one by one. If the first character is the same, compare the second character. Otherwise, the comparison result will be returned directly. Because "17"
In addition to the default no parameters, the sort(function) method can also pass in a custom sorting method. In this way, the sorting results can be completely controlled by yourself. You can sort them however you want. Isn’t it great? Ah, hehe. Generally, a custom function comparison function contains two parameters representing the left element and the right element used for comparison. Then a result is returned in a certain way. If the return value is greater than 0, it means that the left and right elements are exchanged. If the return value is less than 0 or equal to 0, it means that the left and right elements will not be exchanged. Now look at the example
Example 5:
Arrange the original array according to the numbers from large to small
var oldArr5=[3,1,5,7,17]; //Initial array
function mySort(left,right) {
if(left
else{
return -1;}//If the left element is greater than or equal to The elements on the right are not exchanged
}
Of course the above method can be simplified to funaction mySort(left,right){ return right-left;}
//Sort by even numbers first and odd numbers last
var oldArr6=[3,6,7, 18];//Initial array
function mySort2(left,right){
if(left%2==0)return -1;//If the left element is an even number, no exchange is done
if(right %2==0)return 1; //If the right element is an even number, exchange
return 0; //Do not exchange
}
I won’t talk much about the last slice, just use To intercept some elements in the original array and return a new array. The original array will not change. Its operation method is similar to the slice of string
var oldArr7=[1,2,3,4];
oldArr7.slice(0)–>[1,2,3,4 ]
oldArr7.slice(0,2)–>[1,2]
oldArr7.slice(0,0)–>[]
oldArr7.slice(0,-1)–> ;[1,2,3]
oldArr7.slice(-3,-1)–>[2,3]
oldArr4.slice(-1,-3)–[]

什么是PHP?PHP代表超文本预处理器,是一种用于Web开发的流行服务器端脚本语言。它旨在创建动态和交互式网页。PHP嵌入在HTML代码中并在服务器上执行,生成发送到客户端浏览器的HTML输出。凭借其简单易学的语法,PHP允许开发人员构建动态网站、处理表单数据、与数据库交互以及执行各种服务器端任务。它拥有庞大的库和框架生态系统,可增强其功能并使开发人员能够创建强大且可扩展的Web应用程序。PHP受到托管提供商的广泛支持,使其成为Web开发项目的首选。如何在PHP中将字符串放入数组并按换行符分割方

在PHP8.0版本中,数组合并操作是经过了改进的。这个改进主要针对的是数组数据类型的合并操作。在之前的版本中,PHP提供的数组合并操作是使用“+”符号实现的。但是,这种方法存在一些问题。如果两个数组中包含相同的键,那么第二个数组的键值将会覆盖第一个数组中的键值,如果需要把两个数组合并在一起,那么就需要技巧地使用array_merge()函数了。现在,在PHP

PHP8.0中数组中的危险操作:array_splice()在PHP编程中,数组是一个非常常用的数据结构,它允许我们在一个变量中存储多个值。而array_splice()函数则是一个处理数组的方法,它可以删除或替换数组中的元素。但是,在PHP8.0中,array_splice()函数却有一些危险操作,如果使用不当,将会导致一些严重的问题。本文将为大家详细介绍

使用PHP自定义函数可扩展数组交集和并集功能,自定义交集函数允许按键或值查找交集,而自定义并集函数按键或值查找并集。这使您能够基于特定需求灵活操作数组。

PHP是一种广泛使用的服务器端脚本语言,可以通过许多不同的方式进行数组操作。本文将介绍我们编写PHP代码时的最佳实践,帮助您创建更高效、更美观、更可读的代码。1.使用数组函数而不是手动循环最好使用PHP数组函数,而不是手动循环数组来移动、操作或修改数据。PHP数组函数执行较快,具有更好的可读性和可维护性。下面是一些常用的PHP数组函数:array_push(

在PHP中,数组是一种非常常见和有用的数据结构。PHP提供了许多不同的函数和方法来操作和处理这些数组。其中一个非常有用的函数是array_diff()。本文将详细讨论此函数。array_diff()函数的基本用法非常简单。该函数接受两个或多个数组作为参数,并返回一个新数组,其中包含第一个数组中存在,但其他数组中不存在的元素。下面是一个示例:$array1=

PHP数组键值互换的最佳方案:使用内置的array_flip()函数,时间复杂度为O(n)。对于较大的数组,array_flip()的性能优势更明显。实战案例:可使用array_flip()将购物车中商品名称数组转换为商品数量数组。

随着互联网和电子邮件的普及,人们越来越依赖于电子邮件通信。PHP作为一种流行的脚本编程语言,也为电子邮件操作提供了强大的支持。其中,IMAP和POP协议是PHP中邮件操作的两种常用协议。下面就来详细介绍一下它们在PHP中的应用。一、IMAP协议IMAP(InternetMessageAccessProtocol)协议是在邮件客户端和邮件服务器之间建立的


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

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

Dreamweaver Mac version
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
