Common array methods
var arr = ["Little Monk","Little Monkey","Little Pig","Little Sand","Little Dragon"]; var result = arr.push("Jiang Liu","Xin Yuan","Wooden Dragon","Dao Gui","Yima"); console.log("Return value: "+result); console.log("New array: "+arr); pop()This method can delete the last element of the array and return the deleted element as the return value. var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.pop(); console.log("Return value: "+result); console.log("New array: "+arr); unshift()
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.unshift(); console.log("Return value: "+result); console.log("New array: "+arr); shift()You can delete the first element of an array and use the deleted element as the return value var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.shift(); console.log("Return value: "+result); console.log("New array: "+arr); slice()
parameter:
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.slice(1,3); console.log("The intercepted array: "+result); console.log("The original array will not change:"+arr); splice()
parameter
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.splice(1,3); console.log("Deleted element: "+result); console.log("The original array will change:"+arr);
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.splice(1,2,"孙悟空","猪八戒"); console.log("Deleted element: "+result); console.log("The original array will change:"+arr); Array element deduplicationvar arr = [1, 1, 5, 6, 4, 5, 2, 3, 7, 9, 4, 4, 4, 1]; for (let i = 0; i < arr.length; i++) { for (let j = i + 1; j < arr.length; j++) { if (arr[i] === arr[j]) { arr.splice(j, 1); //Delete the element j at the current position j--; //After deleting the element j, the following elements will automatically fill in the position, and you need to compare again at the position j} } } console.log(arr); concat()
var arr1 = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var arr2 = ["Tang Monk","Sun Wukong","Zhu Bajie","Sha Monk","White Dragon Horse"]; var result = arr1.concat(arr2,"Mind wandering"); console.log("New array: "+result); join()
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; var result = arr.join("-"); console.log("New array: "+result); console.log("The type of result is: "+typeof(result)); reverse()
var arr = ["River Flow","Monkey Heart","Wooden Dragon","Knife Sharp","Intentional Horse"]; arr.reverse(); console.log("arr array after inversion: "+arr); sort()This method can sort the elements in an array. This method will affect the original array, and by default it will be sorted according to Unicode encoding. var arr = ["a","d","g","f","k",'v',"d","x"]; arr.sort(); console.log("sorted arr array: "+arr); Even for an array of pure numbers, when sort() is used, it will be sorted according to Unicode encoding, so sorting numbers may give incorrect answers. var arr = [2,14,12,3,5,53,7,31,13]; arr.sort(); console.log("sorted arr array: "+arr); You can specify your own sorting rules Add a callback function to sort() to specify the sorting rules Two parameters (a, b) need to be defined in the callback function The browser will use the elements in the array as arguments to call the callback function The browser will determine the order of elements based on the return value of the callback function
var arr = [2, 14, 12, 3, 5, 53, 7, 31, 13]; arr.sort(function (a, b) { return a - b; // ascending order //return b - a; descending order }); console.log("sorted arr array: " + arr); SummarizeThis article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: CSS perfectly solves the problem of front-end image deformation
>>: MySQL full-text search usage examples
Table of contents Preface text 1. Panel 2. Huaron...
The installation of compressed packages has chang...
What problems does MySQL ROLE solve? If you are a...
This article shares with you a small Demo that ad...
BackUpMysql.sh script #!/bin/bash PATH=/bin:/sbin...
Nginx supports three ways to configure virtual ho...
1. Use of alias The alias command is used to set ...
The shutdown.bat file has a sentence if not "...
question Recently, when I was completing a practi...
1. Download the alpine image [root@DockerBrian ~]...
Table of contents 1. Introduction to Slow Log 2. ...
There are two types: (different browsers) 1. Avail...
1. MySQL download address; http://ftp.ntu.edu.tw/...
Preface This article uses the new features of MyS...
1. Docker cross-host communication Docker cross-h...