当前位置:网站首页>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
边栏推荐
- ESP8266通过arduino IED连接巴法云(TCP创客云)
- Kconfig Kbuild
- 1081 rational sum (20 points) points add up to total points
- 电商数据分析--用户行为分析
- Togglebutton realizes the effect of switching lights
- Analysis of charging architecture of glory magic 3pro
- Esp8266 uses Arduino to connect Alibaba cloud Internet of things
- Variable star user module
- Feature of sklearn_ extraction. text. CountVectorizer / TfidVectorizer
- RT-Thread 线程的时间片轮询调度
猜你喜欢
Reno7 60W超级闪充充电架构
高通&MTK&麒麟 手機平臺USB3.0方案對比
优先级反转与死锁
Feature of sklearn_ extraction. text. CountVectorizer / TfidVectorizer
Navigator object (determine browser type)
基于Redis的分布式锁 以及 超详细的改进思路
C language callback function [C language]
R & D thinking 01 ----- classic of embedded intelligent product development process
【ESP32学习-2】esp32地址映射
Fashion-Gen: The Generative Fashion Dataset and Challenge 论文解读&数据集介绍
随机推荐
Unit test - unittest framework
Navigator object (determine browser type)
C语言,log打印文件名、函数名、行号、日期时间
Understanding of AMBA, AHB, APB and Axi
RT thread API reference manual
Kaggle competition two Sigma connect: rental listing inquiries
Machine learning -- linear regression (sklearn)
Basic knowledge of lithium battery
C language callback function [C language]
Mp3mini playback module Arduino < dfrobotdfplayermini H> function explanation
RuntimeError: cuDNN error: CUDNN_ STATUS_ NOT_ INITIALIZED
Stm32f1+bc20+mqtt+freertos system is connected to Alibaba cloud to transmit temperature and humidity and control LED lights
JS變量類型以及常用類型轉換
C language, log print file name, function name, line number, date and time
R & D thinking 01 ----- classic of embedded intelligent product development process
Keyword inline (inline function) usage analysis [C language]
机器学习--线性回归(sklearn)
JS 函数提升和var变量的声明提升
Missing value filling in data analysis (focus on multiple interpolation method, miseforest)
C语言回调函数【C语言】