This article introduces to you a summary of APIs commonly used in JavaScript arrays. It has certain reference value. Friends in need can refer to it.
Introduction to common APIs for arrays
split()
: Split a string into an array (operating on a string)join()
: Merge arrays into strings (operate on arrays) concat()
: Connect two arrayssplice(begin,deleteCount,insert)
: Splicesplic(begin,end)
:Interception[begin,end)
sort(callball(value1,value2))
:Sortresever()
:Reverse orderfilter(callback(currentValue,index))
:Filter map(callback(currentValue,index))
: Traversal, there is a return value, similar to forEach
forEach(callback(currentValue,index))
: Traversal, there is no return valuereduce(callback(array) ,currentValue,index)[,array])
: Accumulation processingarguments
: used inside the function to turn the function parameters into pseudo arrays (the array api cannot be used)
Example
sort
Sort: if value1 return <code>-1
, sort in ascending order; return 1
, arranged in descending order
var arr = [1,5,4,3,2,6,7] arr.sort((value1,value2) => { if(value1 value2){ return 1 //降序 }else{ return 0 } })
filter
Filters the array and accepts a callback function. The parameters of the callback function are value
, index
(optional), array
(optional)
let arr = [1,2,3,4,5,6,7,8,9] arr.filter((value,index) =>{ console.log(index) return value > 5 //筛选条件 })
let fruits = ['apple', 'banana', 'grapes', 'mango', 'orange']; function find(element){ return fruits.filter((e)=>{ return e.indexOf(element) >= -1 //indexOf查到元素,找到返回元素的索引 }) } find('ap') //['apple','grapes']
map
The difference between forEach
is: map
has a return value, forEach
has no return value; if forEach
can return a value, just define a variable inside it to store the traversed value.
var a = [1,2,3,4] a.map(e => e*2) //[1,4,6,8] a.forEach(e => e*2) //undefined, return 也不会出来
reduce
Accepts two parameters, the callback function and the first parameter of the callback function (optional); the callback function accepts four parameters: 1. The return value of the callback function (processing result) or the second parameter of reduce
; 2. The element being processed; 3. The index of the element being processed; 4. The array calling reduce
.
If reduce
receives the second parameter, then the first parameter of the callback function is it (such as deduplication, the running logic is to process each item of the array to be processed in a push
goes in, which is the process of adding); if there is no second parameter, then the first parameter of the callback function is the first item of the array to be processed (such as destroying the array, the running logic is to The array is taken directly and processed centrally, which is a process of subtraction).
//去重:把待处理数组的每一项处理后在一个个`push`进去,是加的过程 var a = [1,2,3,2,4,5,3,1] a.sort().reduce((arr,currentValue) => { if(arr.length === 0 || arr[arr.length-1] !== currentValue){ arr.push(currentValue) } return arr },[]) //[1,2,3,4,5] //摧毁数组:把待处理数组直接拿过来集中处理,是减的过程 function destroyer(arr) { return [].slice.call(arguments).reduce((current,next) =>{ return current.filter((e) => { return e !== next }) }) } destroyer([1, 2, 3, 1, 2, 3], 2, 3); //[1,1]
arguments
Although it is not an array, it can be converted into a real array. The following are two methods
function array(arr){ console.log(arr) //[1,2,3,4,5],注意是一个伪数组,不能用数组的方法 } array(1,2,3,4,5) var args = Array.prototype.slice.call(arguments); var args = [].slice.call(arguments);
Related recommendations:
Algorithmic analysis of the full arrangement of strings in js
The above is the detailed content of Summary of APIs commonly used in javascript arrays. For more information, please follow other related articles on the PHP Chinese website!

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

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

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

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

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

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

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

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


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

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

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.

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