您好,登錄后才能下訂單哦!
這篇文章主要介紹“常見的JavaScript數組操作方法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“常見的JavaScript數組操作方法有哪些”文章能幫助大家解決問題。
JavaScript中的Array
對象與其他編程語言中的數組一樣,是一組數據的集合。在JavaScript中,數組里面的數據可以是不同類型的,并具有用于執行數組常見操作的方法。
有三種不同的聲明方式
const hobbys = new Array() hobbys[0] = 'Basketball' hobbys[1] = 'Badminton' hobbys[2] = 'swimming' console.log(hobbys) // [ 'Basketball', 'Badminton', 'swimming' ]
const hobbys = new Array('Basketball', 'Badminton','swimming') console.log(hobbys) // [ 'Basketball', 'Badminton', 'swimming' ]
const hobbys = ['Basketball','Badminton','swimming'] console.log(hobbys) // [ 'Basketball', 'Badminton', 'swimming' ]
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' ]
通過指定函數處理數組的每個元素,并返回處理后的數組。
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 ]
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' ]
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
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
pop() 方法用于刪除數組的最后一個元素并返回刪除的元素。
let sites = ['Google', 'Runoob', 'Taobao', 'Zhihu', 'Baidu'] let result = sites.pop() console.log(sites) console.log(result) // [ 'Google', 'Runoob', 'Taobao', 'Zhihu' ] // Baidu
shift() 方法用于把數組的第一個元素從其中刪除,并返回第一個元素的值
let fruits = ["Banana", "Orange", "Apple", "Mango"]; let result = fruits.shift() console.log(fruits) console.log(result) // [ 'Orange', 'Apple', 'Mango' ] // Banana
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' ]
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' ]
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
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
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 ]
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
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
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' ]
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 ]
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
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
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
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
關于“常見的JavaScript數組操作方法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。