首頁 > 軟體

20個常見的JavaScript陣列操作總結

2022-09-18 22:00:09

JavaScript中的Array物件與其他程式語言中的陣列一樣,是一組資料的集合。在JavaScript中,陣列裡面的資料可以是不同型別的,並具有用於執行陣列常見操作的方法。

宣告陣列

有三種不同的宣告方式

1. 常規方式

const hobbys = new Array()
hobbys[0] = 'Basketball'
hobbys[1] = 'Badminton'
hobbys[2] = 'swimming'
console.log(hobbys)
// [ 'Basketball', 'Badminton', 'swimming' ]

2. 簡潔方式

const hobbys = new Array('Basketball', 'Badminton','swimming')
console.log(hobbys)
// [ 'Basketball', 'Badminton', 'swimming' ]

3. 字面

const hobbys = ['Basketball','Badminton','swimming']
console.log(hobbys)
// [ 'Basketball', 'Badminton', 'swimming' ]

Array 物件方法

1. forEach

forEach() 方法用於呼叫陣列的每個元素,並將元素傳遞給回撥函數。沒有返回值,本質上等同於 for 迴圈,對每一項執行 function 函數。不會改變原陣列。

// currentValue:必需,當前元素 index:可選,當前元素的索引值 arr:可選,當前元素所屬的陣列物件。
array.forEach(function(currentValue, index, arr)) 
let array = ['a', 'b', 'c']
let func = (currentValue, index, arr) => {
  currentValue += 's'  
  console.log('currentValue:' + currentValue + ' index:' + index + ' arr:' + arr)
}
array.forEach(func)
console.log(array)

// 控制檯輸出:
// currentValue:as index:0 arr:a,b,c
// currentValue:bs index:1 arr:a,b,c
// currentValue:cs index:2 arr:a,b,c
// [ 'a', 'b', 'c' ]

2. map

通過指定函數處理陣列的每個元素,並返回處理後的陣列。

map() 方法返回一個新陣列,陣列中的元素為原始陣列元素呼叫函數處理後的值。方法按照原始陣列元素順序依次處理元素。不會改變原陣列。

// currentValue:必須,當前元素的值  index:可選,當前元素的索引值 arr:可選,當前元素屬於的陣列物件
array.map(function(currentValue,index,arr))
let array = [1, 2, 3, 4, 5]
let result = array.map((item) => { 
  return item += 5
})
console.log(array)
console.log(result)
// [ 1, 2, 3, 4, 5 ]
// [ 6, 7, 8, 9, 10 ]

3. concat

JavaScript中的 concat() 方法用來連線兩個或更多的陣列,並返回結果。

// array1, array2, ..., arrayN 必需,該引數可以是具體的值,也可以是陣列物件,可以是任意多個
array1.concat(array2,array3,...,arrayN)
const array1 = ['a', 'b', 'c']
const array2 = ['d', 'e', 'f']
const array3 = array1.concat(array2)
console.log(array3)
const array4 = array1.concat('123')
console.log(array4)
// [ 'a', 'b', 'c', 'd', 'e', 'f' ]
// [ 'a', 'b', 'c', '123' ]

4. push

Javascript陣列中的 push() 方法用來向陣列的末尾新增一個或更多元素,並返回新的長度。

let fruits = ["Banana", "Orange", "Apple", "Mango"]
let length = fruits.push("Kiwi")
console.log(fruits)
console.log(length)
// [ 'Banana', 'Orange', 'Apple', 'Mango', 'Kiwi' ]
// 5

5. unshift

unshift() 方法可向陣列的開頭新增一個或更多元素,並返回新的長度。

let fruits = ["Banana", "Orange", "Apple", "Mango"]
let length = fruits.unshift("Lemon", "Pineapple")
console.log(fruits)
console.log(length)
// [ 'Lemon', 'Pineapple', 'Banana', 'Orange', 'Apple', 'Mango' ]
// 6

6. pop

pop() 方法用於刪除陣列的最後一個元素並返回刪除的元素。

let sites = ['Google', 'Runoob', 'Taobao', 'Zhihu', 'Baidu']
let result = sites.pop()
console.log(sites)
console.log(result)
// [ 'Google', 'Runoob', 'Taobao', 'Zhihu' ]
// Baidu

7. shift

shift() 方法用於把陣列的第一個元素從其中刪除,並返回第一個元素的值

let fruits = ["Banana", "Orange", "Apple", "Mango"];
let result = fruits.shift()
console.log(fruits)
console.log(result)
// [ 'Orange', 'Apple', 'Mango' ]
// Banana

8. splice

splice() 方法用於新增或刪除陣列中的元素,並返回刪除的元素陣列

// 引數 Values: index: 必需,規定從何處新增/刪除元素
// howmany: 可選,規定應該刪除多少元素 必須是數位,但可以是 "0"
// item1, ..., itemX 可選,要新增到陣列的新元素
array.splice(index,howmany,item1,.....,itemX)
let fruits = ["Banana", "Orange", "Apple", "Mango"]
let result = fruits.splice(1, 2, "Lemon", "Kiwi")
console.log(fruits)
console.log(result)
// [ 'Banana', 'Lemon', 'Kiwi', 'Mango' ]
// [ 'Orange', 'Apple' ]

9. slice

slice() 方法可從已有的陣列中返回選定的元素。也可提取字串的某個部分,並以新的字串返回被提取的部分。不會改變原陣列。

// start: 可選,規定從何處開始選取 若為負值,表示從原陣列中的倒數第幾個元素開始提取
// end: 可選,規定從何處結束選取 如果沒有指定該引數,那麼切分的陣列包含從start到陣列結束的所有元素
array.slice(start, end)
let fruits = ["Banana", "Orange", "Lemon", "Apple", "Mango"]
let result1 = fruits.slice(1, 3)
let result2 = fruits.slice(2)
console.log(fruits)
console.log(result1)
console.log(result2)
// [ 'Banana', 'Orange', 'Lemon', 'Apple', 'Mango' ]
// [ 'Orange', 'Lemon' ]
// [ 'Lemon', 'Apple', 'Mango' ]

10. join

join() 方法可將所有陣列元素結合為一個字串。它的行為類似 toString(),但是您還可以規定分隔符

// separator: 可選,指定要使用的分隔符 如果省略該引數,則使用逗號作為分隔符
array.join(separator)  
let fruits = ["Banana", "Orange", "Apple", "Mango"];
let energy1 = fruits.join();
let energy2 = fruits.join('-');
console.log(energy1)
console.log(energy2)
// Banana,Orange,Apple,Mango
// Banana-Orange-Apple-Mango

11. every

every() 方法用於檢測陣列所有元素是否都符合指定條件(通過函數提供)。

array.every(function(currentValue,index,arr))
let ages = [32, 33, 16, 40]
let nums = [32, 33, 19, 40]
function checkAdult(age) {
  return age >= 18
}
function checkNums(num) {
  return num >= 18
}
// 16不滿足大於18,故結果false
let result1 = ages.every(checkAdult)
// 每一項都滿足條件,故結果true
let result2 = nums.every(checkNums)
console.log(result1)
console.log(result2)
// false
// true

12. filter

filter() 方法建立一個新的陣列,新陣列中的元素是通過檢查指定陣列中符合條件的所有元素。不會改變原陣列。

array.filter(function(currentValue,index,arr), thisValue)
let ages = [32, 33, 16, 40];
function checkAdult(age) {
  return age >= 18;
}
let result = ages.filter(checkAdult)
console.log(result)
// [ 32, 33, 40 ]

13. indexOf

indexOf() 方法可返回某個指定的字串值在字串中首次出現的位置。沒有找到會返回-1

// searchvalue: 必需。規定需檢索的字串值。
// start: 可選的整數引數。規定在字串中開始檢索的位置。值:0~array.length-1
string.indexOf(searchvalue,start)
let str = "Hello world, welcome to the universe.";
// 輸出w所在的下標索引13(空格也算),沒有找到會返回-1
let n = str.indexOf("welcome");
console.log(n)
console.log(str[n])
// 13
// w

14. reduce

reduce() 方法接收一個函數作為累加器,陣列中的每個值(從左到右)開始縮減,最終計算為一個值。

array.reduce(function(total, currentValue, currentIndex, arr), initialValue)
let numbers = [2, 3, 5, 6]
function getSum(total, num) {
  return total + num
}
let result = numbers.reduce(getSum, 0)
console.log(result)
// 16

15. reverse

reverse() 方法用於顛倒陣列中元素的順序。會改變原陣列,並返回改變順序的陣列。

let fruits = ["Banana", "Orange", "Apple", "Mango"]
let resut = fruits.reverse()
console.log(fruits)
console.log(resut)
// [ 'Mango', 'Apple', 'Orange', 'Banana' ]
// [ 'Mango', 'Apple', 'Orange', 'Banana' ]

16. sort

sort() 方法用於對陣列的元素進行排序。排序順序可以是字母或數位,並按升序或降序。

// sortfunction: 可選。規定排序順序。必須是函數。
array.sort(sortfunction)
let fruits = ["Banana", "Orange", "Apple", "Mango"]
let ages = [9, 3, 4, 5, 7, 10]
// 升序
let agesFunAsc = function (ag1,ag2) {
  return ag1 - ag2
}
// 降序
let agesFunDes= function (ag1,ag2) {
  return -(ag1 - ag2)
}
fruits.sort()
ages.sort(agesFunAsc)
console.log(fruits)
console.log(ages)
ages.sort(agesFunDes)
console.log(ages)
// [ 'Apple', 'Banana', 'Mango', 'Orange' ]
// [ 3, 4, 5, 7, 9, 10 ]
// [ 10, 9, 7, 5, 4, 3 ]

17. toString

toString() 方法用於把數位轉換為字串。

number.toString(radix)
let num = 15
let n = num.toString()
// 也可以使用不同的進位制把一個數位轉換為字串
// 2進位制
let b = num.toString(2);
// 8進位制
let c = num.toString(8);
// 16進位制
let d = num.toString(16);
console.log(n)
console.log(b)
console.log(c)
console.log(d)
// 15
// 1111
// 17
// f

18. at

at()方法接受整數值並返回at索引的值,正整數和負整數皆可。負整數表示從陣列的最後一項開始倒數。

array.at(index)
let str = 'helso word'
let item1 = str.at(2)
let item2 = str.at(-1)
console.log(item1)
console.log(item2)
// l
// d

19. find

find() 方法返回通過測試(函數內判斷)的陣列的第一個元素的值。

array.find(function(currentValue, index, arr),thisValue)
let ages = [3, 10, 18, 20];
function checkAdult(age) {
  return age >= 18;
}
let value = ages.find(checkAdult)
console.log(value)
// 18

20. some

some() 方法用於檢測陣列中的元素是否滿足指定條件(函數提供)。

array.some(function(currentValue,index,arr),thisValue)
let ages = [3, 10, 19, 20];
function checkAdult(age) {
  return age > 18;
}
let result = ages.some(checkAdult)
console.log(result)
// true

到此這篇關於20個常見的JavaScript陣列操作總結的文章就介紹到這了,更多相關JavaScript陣列操作內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com