search
HomeWeb Front-endJS TutorialSummary and analysis of JavaScript array methods_javascript skills

Since I have been coding on freecodecamp recently and used a lot of JavaScript array methods, I made a compilation of JavaScript tutorials. The specific content is as follows:

1. Ordinary method

1. join() joins array elements together and returns them in string form
Parameter: Optional, specifies the separator between elements. If there is no parameter, it defaults to comma
Return value: string
Impact on original array: None

2. reverse() changes the order of the elements of the array into reverse order and returns
Parameters: None
Return value: array
Impact on the original array: The original array is modified into an array arranged in reverse order

3. sort() sorts the array elements and returns
Parameters: optional, sorting method function, without parameters, the default is to sort in dictionary order
Return value: sorted array
Impact on the original array: The original array is modified into a sorted array

4. concat() connects several arrays
Parameters: several, which can be arrays or elements,
Return value: New array after concatenation
Impact on original array: None

5. slice() cuts out several elements from the array, forms a new array and returns
Parameters: two numbers, the second of which is optional. The first parameter indicates the index value of the first element to be intercepted (this element is included when intercepting). If the first parameter is a negative number, it means that the intercepted element starts from Counting from the end of the element (for example: -1 means the last element); the meaning of the second parameter is the index value of the element to stop intercepting (this character is not included when intercepting), the negative value is the same as the first parameter
Return value: intercepted new array
Impact on original array: None

6. splice() replaces, deletes or inserts elements from the array and returns a new array
Parameters: Several parameters, of which the first parameter is required and the others are optional. The first parameter is the first index value of the operation. If there is no second parameter at this time, the first parameter (including the first parameter) will be deleted. All elements after the index value of each parameter), when the second parameter is included, the second parameter deletes the number of elements and returns a new array composed of these elements; when the second parameter is 0, the following parameters will Insert the original array as a new element and return an empty array; when the second parameter is not 0 and contains other parameters, the replacement operation is performed and the new array composed of the original elements before replacement is returned
Return value: new array composed of deleted elements
Impact on the original array: Replacement, deletion, insertion, etc. operations will be performed on the original array

7. push() adds elements to the end of the array and returns the array length
Parameters: several, elements added to the end of the array
Return value: length of the array after adding elements
Impact on the original array: elements

are added to the end of the original array

8. pop() deletes an element from the end of the array
Parameters: None
Return value: deleted element
Impact on the original array: One element is deleted from the end of the original array

9. unshift() adds elements to the head of the array and returns the array length
Parameters: several, elements added to the head of the array
Return value: length of the array after adding elements
Impact on the original array: elements

are added to the head of the original array

10. shift() deletes an element from the head of the array
Parameters: None
Return value: deleted element
Impact on the original array: One element is deleted from the head of the original array

11. toString() converts the array into a string, with commas separating each element
Parameters: None
Return value: The formed string (in a two-dimensional array, only the elements of the two-dimensional array are connected)
Impact on original array: None

12. toLocaleString() is the localized version of toString() method


-------------------------------------------------- ----------------------------------

2. Iterator method

1. foreach() calls the method on each element of the array
Parameters: a function
Return value: None
Impact on original array: None

2. every() accepts a function whose return value is Boolean type. If the function returns true for all elements in the array, it will return true, otherwise it will return false
Parameters: a function whose return value is Boolean
Return value: true or false
Impact on original array: None

3. some() accepts a function with a return value of Boolean type. As long as there are elements in the array, the function returns true, otherwise it returns false
Parameters: a function whose return value is Boolean
Return value: true or false
Impact on original array: None

4. map() accepts a function as a parameter and returns a new array. The elements of the new array are the results of using the function on the original array elements
Parameters: a function
Return value: an array composed of each element using the result value of the function
Impact on original array: None

5、filter()接收一個傳回值為布林值的函數作為參數,對所有元素應該該函數,並傳回傳回值為true的元素組成的新陣列
參數:一個函數
傳回值:每個元素使用函數為true的元素組成的陣列
對原數組的影響:無


-------------------------------------------------- ------------------------------

三、歸併方法

1、reduce()接受一個函數作為參數,並傳回一個值。從一個累加值開始, 不斷對累加值和陣列中的後續元素呼叫函數。
參數:一個函數
傳回值:最後的累加值
對原數組的影響:無

2、reduceRight()方法
說明:和reduce一樣,只是執行順序是從右到左

以上這篇JavaScript陣列方法總結分析就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

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 Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

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

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft