溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

js數(shù)組的常用方法有哪些

發(fā)布時(shí)間:2022-03-14 15:26:54 來(lái)源:億速云 閱讀:133 作者:iii 欄目:web開發(fā)

這篇文章主要介紹了js數(shù)組的常用方法有哪些的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇js數(shù)組的常用方法有哪些文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。

數(shù)組的常用方法有下面幾種

方法 釋義

push()

push()?法可以接收任意數(shù)量的參數(shù),并將它們添加到數(shù)組末尾,返回?cái)?shù)組的最新?度

unshift()

unshift() 在數(shù)組開頭添加任意多個(gè)值,然后返回新的數(shù)組?度

splice()

傳?三個(gè)參數(shù),分別是開始位置、 0 (要?jiǎng)h除的元素?cái)?shù)量)、插?的元素,返回空數(shù)組

concat()

?先會(huì)創(chuàng)建?個(gè)當(dāng)前數(shù)組的副本,然后再把它的參數(shù)添加到副本末尾,最后返回這個(gè)新構(gòu)建的數(shù)組,不會(huì)影響原始數(shù)組

pop()

pop() ?法?于刪除數(shù)組的最后?項(xiàng),同時(shí)減少數(shù)組的 length 值,返回被刪除的項(xiàng)

shift()

shift() ?法?于刪除數(shù)組的第?項(xiàng),同時(shí)減少數(shù)組的 length 值,返回被刪除的項(xiàng)

splice()

傳?兩個(gè)參數(shù),分別是開始位置,刪除元素的數(shù)量,返回包含刪除元素的數(shù)組

slice()

slice() ?于創(chuàng)建?個(gè)包含原有數(shù)組中?個(gè)或多個(gè)元素的新數(shù)組,不會(huì)影響原始數(shù)組

indexOf()

返回要查找的元素在數(shù)組中的位置,如果沒(méi)找到則返回 -1

includes()

返回要查找的元素在數(shù)組中的位置,找到返回 true ,否則 false

find()

返回第?個(gè)匹配的元素

數(shù)組的兩個(gè)排序方法

reverse()    反轉(zhuǎn)數(shù)組

let values = [1, 2, 3, 4, 5];

values.reverse();

alert(values); // 5,4,3,2,1

sort()

sort() ?法接受?個(gè)?較函數(shù),?于判斷哪個(gè)值應(yīng)該排在前?

數(shù)組方法的基本操作   

數(shù)組基本操作可以歸納為 增、刪、改、查,需要留意的是哪些?法會(huì)對(duì)原數(shù)組產(chǎn)?影響,哪些?法不會(huì)

push()

let colors = []; // 創(chuàng)建?個(gè)數(shù)組

let count = colors.push("red", "green"); // 推?兩項(xiàng)

console.log(count) // 2

unshift()

let colors = new Array(); // 創(chuàng)建?個(gè)數(shù)組

let count = colors.unshift("red", "green"); // 從數(shù)組開頭推?兩項(xiàng)

alert(count); // 2

splice()

let colors = ["red", "green", "blue"];

let removed = colors.splice(1, 0, "yellow", "orange")

console.log(colors) // red,yellow,orange,green,blue

console.log(removed) // []

 concat()

let colors = ["red", "green", "blue"];

let colors2 = colors.concat("yellow", ["black", "brown"]);

console.log(colors); // ["red", "green","blue"]

console.log(colors2); // ["red", "green", "blue", "yellow", "black",

"brown"]

pop()

let colors = ["red", "green"]

let item = colors.pop(); // 取得最后?項(xiàng)

console.log(item) // green

console.log(colors.length) // 1

shift()

let colors = ["red", "green"]

let item = colors.shift(); // 取得第?項(xiàng)

console.log(item) // red

console.log(colors.length) // 1

splice()

let colors = ["red", "green", "blue"];

let removed = colors.splice(0,1); // 刪除第?項(xiàng)

console.log(colors); // green,blue

console.log(removed); // red,只有?個(gè)元素的數(shù)組

1234

slice()

let colors = ["red", "green", "blue", "yellow", "purple"];

let colors2 = colors.slice(1);

let colors3 = colors.slice(1, 4);

console.log(colors) // red,green,blue,yellow,purple

concole.log(colors2); // green,blue,yellow,purple

concole.log(colors3); // green,blue,yellow

splice()

let colors = ["red", "green", "blue"];

let removed = colors.splice(1, 1, "red", "purple"); // 插?兩個(gè)值,刪除?個(gè)元素

console.log(colors); // red,red,purple,blue

console.log(removed); // green,只有?個(gè)元素的數(shù)組

indexOf()

let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];

numbers.indexOf(4) // 3

includes()

let numbers = [1, 2, 3, 4, 5, 4, 3, 2, 1];

numbers.includes(4) // true

find()

const people = [

 {

 name: "Matt",

 age: 27

 },

 {

 name: "Nicholas",

 age: 29

 }

];

people.find((element, index, array) => element.age < 28) // // {name:

"Matt", age: 27}

關(guān)于“js數(shù)組的常用方法有哪些”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“js數(shù)組的常用方法有哪些”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

js
AI