当前位置:网站首页>Classification, understanding and application of common methods of JS array
Classification, understanding and application of common methods of JS array
2022-07-06 12:13:00 【Aboci Bang】
var arr = [‘a’,‘b’,‘c’,‘d’,‘e’];
Stack method push
arr.push(‘f’,‘e’); // Add one or more elements... To the end of the array Return array length ! It's going to change the array
Stack method pop
arr.pop(); // Array length minus one , Delete and return the last array element ! It's going to change the array
Queue method shift
arr.shift(); // Array length minus one , Delete and return the first array element ! It's going to change the array
Queue method unshift
arr.unshift(‘f’,‘e’); // Add one or more elements to the beginning of the array Return array length ! It's going to change the array
Sorting method reverse
arr.reverse(); // Used to reverse and return the original array It's going to change the array
Sorting method sort
arr.sort() // Sort by the character encoding order of the array elements ‘a’.charCodeAt() //97
Parameter is a function Default ascending sort ! It's going to change the array
Function return value and 0 Compare :
Return value greater than 0 a Will move to b Behind ; Equal to zero position unchanged ; Less than 0 a Move to b In front of
// Ascending
arr.sort(function(a,b){
return a - b;
});
arr.sort((a,b)=>{
return a - b;
});
// Descending
arr.sort(function(a,b){
return b - a;
});
arr.sort((a,b)=>{
return b - a;
});
Iterative method forEach
// Traverse every element of the array value: Current element value index: Current element subscript array: Current array No return value It doesn't change the original array
arr.forEach(function(value,index,array){
});
Iterative method every
Once the result is false Just go back to false Otherwise return to true Be similar to &&
// It can be used to judge null value
Iterative method some
Once the result is false Just go back to false Otherwise return to true Be similar to ||
// It can be used to judge whether the element exists
Iterative method map
The return values of all results form a new array It doesn't change the original array
Iterative method filter
Used to filter out the result as false Array elements of The remaining elements form a new array It doesn't change the original array
To find the way indexOf lastIndexOf
indexOf
Find the specified position of the element in the array according to the element value Return position subscript If no element is specified, return -1
Parameters 1 : The element to look for
Parameters 2 : Where to start looking for ---- 1: From the subscript for 1 Start to look back -1: Start from the position of the penultimate element and look back Be careful : There is no implicit type conversion when looking for elements It is === Compare
lastIndexOf
And indexOf The search order is reverse The others are the same
Reduction method reduce reduceRight
reduce
The first parameter Is the function The second parameter is When splicing The character added before the final return value Plus can be understood as Splicing and operation
prev( The return value of the last call , Or initial value )
now( Elements currently being processed in the array )
index ( The index of the current element in the array )
arr ( call reduce Array of )
It can be used to calculate the sum of array elements Element splicing and so on ...
reduceRight
reduceRight And reduce Execute in reverse order The others are the same
Other methods join
arr.join(‘-’); // according to join Parameter to splice array elements // ‘a-b-c-d-e’
Other methods concat
arr.concat([1,2]); // Do array splicing It doesn't change the original array !
arr.concat([1,2],[3,4]); // Multiple array splices are separated by commas
concat There is also an important role : Do deep copy
Other methods slice
arr.slice(0,2);// Extract the array element at the specified position Return a new array It doesn't change the original array
arr.slice(-1);// Extract the penultimate element ‘ as well as ’ All subsequent elements .
Parameters 1: Start extracting subscripts ( The extraction includes the current subscript element )
Parameters 2: End extracted subscript ( Subscript elements that do not include the end position )
Other methods splice
arr.splice(0,2);// Delete the original array element It's going to change the array Returns an array of deleted array elements .
arr.splice(0,0);// insert data Put the second parameter length : Set to 0
Parameters 1: The subscript of the element to be deleted ( Delete including the current subscript element )
Parameters 2: Length to delete
Parameters 3: Add a new array or a single value to the original array after deletion
toString
arr.toString(); // ‘a,b,c,d,e’ Array has null and undefined Will turn into ‘’,
toLocaleString
arr.toLocaleString(); // ‘a,b,c,d,e’ Array has null and undefined Will turn into ‘’,
var a = 1;
a.toLocaleString(‘zh’,{style:‘percent’}) // 100%
var a = 10000000;
a.toLocaleString(); //‘10,000,000’ Add a comma to every three numbers
valueOf
var arr1 = arr.valueOf(); // Returns the array itself Is a shallow copy
边栏推荐
猜你喜欢
R & D thinking 01 ----- classic of embedded intelligent product development process
AMBA、AHB、APB、AXI的理解
The dolphin scheduler remotely executes shell scripts through the expect command
数据分析之缺失值填充(重点讲解多重插值法Miceforest)
[golang] leetcode intermediate - fill in the next right node pointer of each node & the k-smallest element in the binary search tree
Cannot change version of project facet Dynamic Web Module to 2.3.
Esp8266 uses Arduino to connect Alibaba cloud Internet of things
电商数据分析--薪资预测(线性回归)
Apprentissage automatique - - régression linéaire (sklearn)
JS正则表达式基础知识学习
随机推荐
uCOS-III 的特点、任务状态、启动
STM32 how to locate the code segment that causes hard fault
Whistle+switchyomega configure web proxy
open-mmlab labelImg mmdetection
arduino获取随机数
Machine learning -- decision tree (sklearn)
js 变量作用域和函数的学习笔记
Pytorch-温度预测
JS变量类型以及常用类型转换
Esp8266 uses Arduino to connect Alibaba cloud Internet of things
Inline detailed explanation [C language]
A possible cause and solution of "stuck" main thread of RT thread
Important methods of array and string
ES6语法总结--下篇(进阶篇 ES6~ES11)
高通&MTK&麒麟 手機平臺USB3.0方案對比
GNN的第一个简单案例:Cora分类
Basic knowledge of lithium battery
Kaggle竞赛-Two Sigma Connect: Rental Listing Inquiries
The first simple case of GNN: Cora classification
Unit test - unittest framework