search
HomeWeb Front-endJS TutorialA detailed discussion of Array array objects in Javascript_jquery

First, the definition of the array and the method of initialization:
var myArray = new Array(1,3.1415,"love"); //Note here that the elements in the myArray array are not just elements of the same data type. They can have integers and integers. Floating point types, strings, etc. are all acceptable. This fully demonstrates the weakening of data types by JavaScript as a language, and the language is more casual and simplified. Just use var when defining an object.
The introduction here is limited, and there are some that I have not given the results. I hope you can experience it yourself and try it yourself to see what the results are. This will help with memory. The following parameters with [] can be omitted.

Attributes of Array:
length: The length of the array object, that is, the number of array elements. It should also be noted here that the subscript of the first element is 0.
document.write(myArray.length); //The result is 3

Array method:

Copy code The code is as follows:

join(): Connect the elements in the array one by one, separated by The symbol is placed between elements
document.write(myArray.join("-")); //Output result: 1-3.1415-love
document.write(myArray.join(" ")) ; //Output result: What is it?
document.write(myArray.join("*¥")); //Output result: What is it?
document.write(myArray.join("* &")); //Output result: What is it?
document.write(myArray.join(" ")); //Output result: What is it?

reverse(): Reverse the order of elements in the array
document.write(myArray.reverse()); //Output result: love,3.1415,1
slice([,]): Equivalent to array clipping, the end is not included here. When you see this, you should think of the substring() and substr() methods of the Sting object. . In fact, they are all similar.
var arraynumber = new Array(1,2,3,4,5,6,7,8);
document.write(arraynumber.slice(3)); //Output result: 4,5, 6,7,8
document.write(arraynumber.slice(3,5)); // Output result: 4,5
i made a mistake, the result I originally wrote was 4,5,6, Actually it's 4,5. Thanks to a friend for bringing this up. Please note that the slice method does not include the termination position.
document.write(arraynumber.slice(3,3)); // Output result: What is it?
document.write(arraynumber.slice(3,2)); // Output result: What is it?
document.write(arraynumber.slice(3,-1)); // Output result: What is it?
document.write(arraynumber.slice(-100)); // Output result: What is it?

sort([]): Sort
Without method function, sort in alphabetical order, that is, sort according to the order of character encoding, not sorting by numerical value as commonly thought.
If it has a method function, it will be sorted by the method function.

Example:
Copy code The code is as follows:

<script> <BR>function sortNumber(a,b) <BR>{ <BR>return a-b; <BR>} <BR>var myArray = new Array(3,2,54,23,90,250); <BR>document.write ("document.write("Unsorted values:",myArray,"<br />") <BR>document.write("Default sorted values:",myArray.sort()," <br />") <BR>document.write("Numbers sorted by sortNumber(): ",myArray.sort(sortNumber),"<br />") <BR></ script> <BR></script>

The result is:
Unsorted values: 3,2,54,23,90,250
Default sorted values: I don’t know this either, who cares? Remember the character encoding.
The values ​​sorted by sortNumber(): 2,3,23,54,90,250
What will be the result if you change "a-b" in the sortNumber method to "b-a"? Woolen cloth?
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
php 怎么求2个数组相同的元素php 怎么求2个数组相同的元素Dec 23, 2022 am 10:04 AM

php求2个数组相同元素的方法:1、创建一个php示例文件;2、定义两个有相同元素的数组;3、使用“array_intersect($array1,$array2)”或“array_intersect_assoc()”方法获取两个数组相同元素即可。

c语言数组如何初始化c语言数组如何初始化Jan 04, 2023 pm 03:36 PM

C语言数组初始化的三种方式:1、在定义时直接赋值,语法“数据类型 arrayName[index] = {值};”;2、利用for循环初始化,语法“for (int i=0;i<3;i++) {arr[i] = i;}”;3、使用memset()函数初始化,语法“memset(arr, 0, sizeof(int) * 3)”。

c++数组怎么初始化c++数组怎么初始化Oct 15, 2021 pm 02:09 PM

c++初始化数组的方法:1、先定义数组再给数组赋值,语法“数据类型 数组名[length];数组名[下标]=值;”;2、定义数组时初始化数组,语法“数据类型 数组名[length]=[值列表]”。

使用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

javascript怎么给数组中增加元素javascript怎么给数组中增加元素Nov 04, 2021 pm 12:07 PM

增加元素的方法:1、使用unshift()函数在数组开头插入元素;2、使用push()函数在数组末尾插入元素;3、使用concat()函数在数组末尾插入元素;4、使用splice()函数根据数组下标,在任意位置添加元素。

php怎么判断数组里面是否存在某元素php怎么判断数组里面是否存在某元素Dec 26, 2022 am 09:33 AM

php判断数组里面是否存在某元素的方法:1、通过“in_array”函数在数组中搜索给定的值;2、使用“array_key_exists()”函数判断某个数组中是否存在指定的key;3、使用“array_search()”在数组中查找一个键值。

php 怎么去除第一个数组元素php 怎么去除第一个数组元素Dec 23, 2022 am 10:38 AM

php去除第一个数组元素的方法:1、新建一个php文件,并创建一个数组;2、使用“array_shift”方法删除数组首个元素;3、通过“print_”r输出数组即可。

go语言中元组是什么go语言中元组是什么Dec 27, 2022 am 11:27 AM

元组是固定长度不可变的顺序容器(元素序列),go语言中没有元组类型,数组就相当于元组。在go语言中,数组是一个由固定长度的特定类型元素组成的序列,一个数组可以由零个或多个元素组成;数组的声明语法为“var 数组变量名 [元素数量]Type”。

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

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),

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment