search
HomeWeb Front-endJS TutorialJavaScript study notes (5) Array array type introduction_basic knowledge

Array Creation
First type:

Copy code The code is as follows:

var colors = new Array();
var colors = new Array(20);//Create an array containing 20 items
var colors = new Array("Greg");//Create an array containing 1 item, which is a string Array of "Greg"
var colors = new Array("red","blue","green"); //Create 3 items

Second type:
Copy code The code is as follows:

var colors = ["red","blue","green"] ;
var colors = [];//Create an empty array

Note: The index of the array starts from 0

1. length attribute
length attribute The number of items in the array is saved in, such as:
Copy the code The code is as follows:

var colors = ["red","blue","green"];
alert(colors.length); //3

The length attribute is not read-only, you can use the length attribute in the array Remove items at the end, or add new items, such as:
Copy code The code is as follows:

var colors = ["red","blue","green"];
colors.length = 2;
alert(colors); //red,blue
colors[colors.length] = "black";
alert(colors); //red, blue, black

2.join() method, connect the items in the array
Copy code The code is as follows:

var colors = ["red","blue","green"];
alert( colors.join(",")); //red,blue,green
alert(colors.join("||")); //red||blue||green

3. Array stack methods: push() and pop()
push() method can accept any number of parameters, add them to the end of the array one by one, and return the length of the modified array
pop() The method removes the last item from the end of the array, reduces the length value of the array, and returns the removed item
Copy code The code is as follows:

var colors = new Arrary(); //Create an array
var count = colors.push("red","green"); //Push two items to the end of the array
alert(count); //2
count = colors.push("black"); //Push an item to the end of the array
alert(count); //3
var item = colors.pop(); //Remove the last item and return the value
alert(item); //"black"
alert(count); //2

4. Array queue methods: push() and shift(), unshift()
push() method is the same as above
shift() method removes the first item in the array and returns it, and the length of the array is reduced 1 The
unshift() method adds any item to the front of the array and returns the length of the new array
Copy code The code is as follows:

var colors = new Arrary(); //Create an array
var count = colors.push("red","green"); //Push two items to the end of the array
alert(count); //2
count = colors.push("black"); //Push an item to the end of the array
alert(count); //3
var item = colors.shift(); //Remove the first item and return the value
alert(item); //"red"
alert(colors); //green,black
count = colors .unshift("blue"); //Push an item to the front of the array
alert(count); //3
alert(colors); //blue, green, black

5. Reordering methods: reverse() and sort()
reverse() method reverses the order of array items
sort() method defaults to sorting array items in ascending order by string size, and can accept a comparison size The function takes as parameter
Copy the code The code is as follows:

var values ​​= [1,2, 3,4,5];
values.reverse();
alert(values); //5,4,3,2,1

Copy code The code is as follows:

//Ascending sorting function
function compare(value1,value2) {
if (value1 return -1; //Descending order is changed to 1
} else if (value1 > value2) {
return 1; //Descending order changed to -1
} else {
return 0;
}
}

Copy code The code is as follows:

//Array sorted in ascending order
var values ​​= [0, 1,5,15,20,10];
values.sort(compare);
alert(values);//0,1,5,10,15,20

Copy code The code is as follows:

//You can use this function for numerical types, ascending order
function compare(value1,value2) {
return value2 - value1;
}

6. Some methods of arrays: concat() method, slice() method and splice() method
The concat() method adds parameters to the end of the original array and returns a new array. The original array remains unchanged.
The slice() method returns the items in the array. If there is one parameter, it returns all items from the specified position to the end of the array. When two parameters are used, the items between the start position and the end position (excluding the end position) are returned, and the original array remains unchanged
The splice() method inserts, deletes, or replaces items in the array, and returns the deleted item (returns an empty array if not deleted), the original array changes
Copy code The code is as follows:

//concat() method
var colors = ["red","green","blue"];
var colors2 = colors.concat("yellow",["black","brown"] );
alert(colors); //red,green,blue
alert(colors2); //red,green,blue,yellow,black,brown

Copy code The code is as follows:

//slice() method
var colors = ["red"," green","blue","yellow","black"];
var colors2 = colors.slice(1); //With one parameter, return all items from the specified position to the end of the array
var colors3 = colors .slice(1,4); //If there are two parameters, return the items between the start position and the end position (excluding the end position)
alert(colors2); //green,blue,yellow,black
alert(colors3); //green,,blue,yellow

Copy code The code is as follows:

//splice() method
//Insert item, specify 3 parameters when inserting: starting position, 0 (item to be deleted), item to be inserted
var colors = ["red","green","blue"];
var inserted = colors.splice(1,0,"yellow","orange"); //Insert two items starting from position 1
alert(colors); //red,yellow,orange,green,blue
alert(inserted); //Empty array

//Replacement item, specify 3 parameters when deleting: starting position, Items to be deleted, any items to be inserted
var colors = ["red","green","blue"];
var replaced = colors.splice(1,1,"black","brown "); //Delete one item and insert two items
alert(colors); //red,black,browm,blue
alert(replaced); //green
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
使用C#中的Array.Sort函数对数组进行排序使用C#中的Array.Sort函数对数组进行排序Nov 18, 2023 am 10:37 AM

标题:C#中使用Array.Sort函数对数组进行排序的示例正文:在C#中,数组是一种常用的数据结构,经常需要对数组进行排序操作。C#提供了Array类,其中有Sort方法可以方便地对数组进行排序。本文将演示如何使用C#中的Array.Sort函数对数组进行排序,并提供具体的代码示例。首先,我们需要了解一下Array.Sort函数的基本用法。Array.So

php数组类型有哪些php数组类型有哪些Jun 01, 2023 am 10:41 AM

php数组类型有两种,分别是:1、索引数组,下标由数字组成,默认从0开始,每个数字对应一个数组元素在数组中的位置;2、关联数组,下标由数值和字符串混合的形式组成,如果一个数组中有一个键名不是数字,那么这个数组就是关联数组。

简单明了的PHP array_merge_recursive()函数使用方法简单明了的PHP array_merge_recursive()函数使用方法Jun 27, 2023 pm 01:48 PM

在进行PHP编程时,我们常常需要对数组进行合并。PHP提供了array_merge()函数来完成数组合并的工作,不过当数组中存在相同的键时,该函数会覆盖原有的值。为了解决这个问题,PHP在语言中还提供了一个array_merge_recursive()函数,该函数可以合并数组并保留相同键的值,使得程序的设计变得更加灵活。array_merge

如何使用PHP中的array_combine函数将两个数组拼成关联数组如何使用PHP中的array_combine函数将两个数组拼成关联数组Jun 26, 2023 pm 01:41 PM

在PHP中,有许多强大的数组函数可以使数组的操作更加方便和快捷。当我们需要将两个数组拼成一个关联数组时,可以使用PHP的array_combine函数来实现这一操作。这个函数实际上是用来将一个数组的键作为另一个数组的值,合并成一个新的关联数组。接下来,我们将会讲解如何使用PHP中的array_combine函数将两个数组拼成关联数组。了解array_comb

php数组中有多少数据类型php数组中有多少数据类型Jun 06, 2023 pm 03:41 PM

php数组中数据类型分为标量类型,复合类型和特殊类型三大类,其中八小类分别是:1、boolean,布尔型;2、integer,整型;3、float,浮点型,也称作double;4、string,字符串;5、array,数组;6、object,对象;7、resource,资源型;8、NULL,空null。

PHP array_fill()函数用法详解PHP array_fill()函数用法详解Jun 27, 2023 am 08:42 AM

在PHP编程中,数组是一种非常重要的数据结构,能够轻松地处理大量数据。PHP中提供了许多数组相关的函数,array_fill()就是其中之一。本篇文章将详细介绍array_fill()函数的用法,以及在实际应用中的一些技巧。一、array_fill()函数概述array_fill()函数的作用是创建一个指定长度的、由相同的值组成的数组。具体来说,该函数的语法

Python中的Array模块怎么使用Python中的Array模块怎么使用May 01, 2023 am 09:13 AM

Python中的array模块是一个预定义的数组,因此其在内存中占用的空间比标准列表小得多,同时也可以执行快速的元素级别操作,例如添加、删除、索引和切片等操作。此外,数组中的所有元素都是同一种类型,因此可以使用数组提供的高效数值运算函数,例如计算平均值、最大值和最小值等。另外,array模块还支持将数组对象直接写入和读取到二进制文件中,这使得在处理大量数值数据时更加高效。因此,如果您需要处理大量同质数据,可以考虑使用Python的array模块来优化代码的执行效率。要使用array模块,首先需要

Java中的ArrayStoreException异常的常见原因是什么?Java中的ArrayStoreException异常的常见原因是什么?Jun 25, 2023 am 09:48 AM

在Java编程中,数组是一种重要的数据结构。数组可以在一个变量中存储多个值,更重要的是可以使用索引访问每个值。但是在使用数组时,可能会出现一些异常,其中之一是ArrayStoreException。本文将讨论ArrayStoreException异常的常见原因。1.类型不匹配数组在创建时必须指定元素类型。当我们试图将不兼容的数据类型存储到一个数组中时,就会抛

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

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use