首頁 > web前端 > js教程 > JavaScript 陣列方法範例:綜合指南(方法)

JavaScript 陣列方法範例:綜合指南(方法)

Linda Hamilton
發布: 2024-11-04 18:28:01
原創
691 人瀏覽過

JavaScript Array Methods Examples: A Comprehensive Guide (Methods)

所有主要 JavaScript 數組方法的完整範例。

陣列方法的分類:

1.修改方法(修改原數組)

  • push()、pop()、shift()、unshift()、reverse()、sort()、splice()、fill()

2. 非修改方法(傳回新數組/值)

  • map()、filter()、concat()、slice()、toReversed()、toSorted()、toSpliced()

3. 檢索方法

  • indexOf()、includes()、find()、findIndex()、findLast()、findLastIndex()

4. 迭代方法

  • forEach()、map()、filter()、reduce()、every()、some()

5. 數組創建方法

  • Array.from()、Array.of()、Array.fromAsync()

6. 其他實用方法

  • join()、flat()、flatMap()、entries()、values()、with()

以下所有 31 種方法的範例:

1. concat() - 合併兩個或多個數組

const arr1 = [1, 2];
const arr2 = [3, 4];
console.log(arr1.concat(arr2)); // Output: [1, 2, 3, 4]
登入後複製

2. join() - 從陣列元素建立一個字串

const fruits = ['Apple', 'Banana', 'Orange'];
console.log(fruits.join(', ')); // Output: "Apple, Banana, Orange"
登入後複製

3. fill() - 用靜態值填滿陣列元素

const numbers = [1, 2, 3, 4];
console.log(numbers.fill(0)); // Output: [0, 0, 0, 0]
登入後複製

4.includes() - 檢查陣列是否包含特定元素

const colors = ['red', 'blue', 'green'];
console.log(colors.includes('blue')); // Output: true
登入後複製

5.indexOf() - 找出元素的第一個索引

const numbers2 = [1, 2, 3, 2];
console.log(numbers2.indexOf(2)); // Output: 1
登入後複製

6.reverse() - 反轉數組元素

const letters = ['a', 'b', 'c'];
console.log(letters.reverse()); // Output: ['c', 'b', 'a']
登入後複製

7. sort() - 對陣列元素進行排序

const unsorted = [3, 1, 4, 1, 5];
console.log(unsorted.sort()); // Output: [1, 1, 3, 4, 5]
登入後複製

8. splice() - 從陣列中新增/刪除元素

const months = ['Jan', 'March', 'April'];
months.splice(1, 0, 'Feb');
console.log(months); // Output: ['Jan', 'Feb', 'March', 'April']
登入後複製

9. at() - 傳回指定索引處的元素

const array1 = [5, 12, 8, 130, 44];
console.log(array1.at(2)); // Output: 8
登入後複製

10. copyWithin() - 將陣列元素複製到另一個位置

const array2 = ['a', 'b', 'c', 'd', 'e'];
console.log(array2.copyWithin(0, 3, 4)); // Output: ['d', 'b', 'c', 'd', 'e']
登入後複製

11. flat() - 建立一個包含子數組元素連接的新數組

const arr3 = [1, 2, [3, 4, [5, 6]]];
console.log(arr3.flat(2)); // Output: [1, 2, 3, 4, 5, 6]
登入後複製

12. Array.from() - 從類似陣列的物件建立陣列

console.log(Array.from('hello')); // Output: ['h', 'e', 'l', 'l', 'o']
登入後複製

13. findLastIndex() - 傳回滿足條件的最後一個索引

const numbers3 = [5, 12, 8, 130, 44, 8];
console.log(numbers3.findLastIndex(num => num === 8)); // Output: 5
登入後複製

14. forEach() - 為每個陣列元素執行函數

const numbers4 = [1, 2, 3];
numbers4.forEach(num => console.log(num * 2)); // Output: 2, 4, 6
登入後複製

15. every() - 測試所有元素是否通過條件

const numbers5 = [1, 2, 3, 4, 5];
console.log(numbers5.every(num => num > 0)); // Output: true
登入後複製

16.entries() - 傳回帶有​​鍵/值對的陣列迭代器

const fruits2 = ['Apple', 'Banana'];
const iterator = fruits2.entries();
console.log([...iterator]); // Output: [[0, 'Apple'], [1, 'Banana']]
登入後複製

17.values() - 傳回帶有​​值的陣列迭代器

const fruits3 = ['Apple', 'Banana'];
const values = [...fruits3.values()];
console.log(values); // Output: ['Apple', 'Banana']
登入後複製

18. toReversed() - 傳回新的反轉數組

const arr4 = [1, 2, 3];
console.log(arr4.toReversed()); // Output: [3, 2, 1]
console.log(arr4); // Original array unchanged: [1, 2, 3]
登入後複製

19. toSorted() - 傳回新的排序數組

const arr5 = [3, 1, 2];
console.log(arr5.toSorted()); // Output: [1, 2, 3]
console.log(arr5); // Original array unchanged: [3, 1, 2]
登入後複製

20. toSpliced() - 透過拼接操作傳回新數組

const arr6 = [1, 2, 3];
console.log(arr6.toSpliced(1, 1, 'two')); // Output: [1, 'two', 3]
console.log(arr6); // Original array unchanged: [1, 2, 3]
登入後複製

21. with() - 傳回元素被取代的新數組

const arr7 = [1, 2, 3];
console.log(arr7.with(1, 'two')); // Output: [1, 'two', 3]
console.log(arr7); // Original array unchanged: [1, 2, 3]
登入後複製

22. Array.fromAsync() - 從非同步可迭代建立數組

async function* asyncGenerator() {
  yield 1;
  yield 2;
}
Array.fromAsync(asyncGenerator()).then(array => console.log(array)); // Output: [1, 2]
登入後複製

23. Array.of() - 從參數建立數組

console.log(Array.of(1, 2, 3)); // Output: [1, 2, 3]
登入後複製

24.map() - 使用回呼結果建立新數組

const numbers6 = [1, 2, 3];
console.log(numbers6.map(x => x * 2)); // Output: [2, 4, 6]
登入後複製

25. flatMap() - 映射並展平結果

const arr8 = [1, 2, 3];
console.log(arr8.flatMap(x => [x, x * 2])); // Output: [1, 2, 2, 4, 3, 6]
登入後複製

26.reduce() - 將數組減少為單一值(從左到右)

const numbers7 = [1, 2, 3, 4];
console.log(numbers7.reduce((acc, curr) => acc + curr, 0)); // Output: 10
登入後複製

27.reduceRight() - 將陣列減少為單一值(從右到左)

const numbers8 = [1, 2, 3, 4];
console.log(numbers8.reduceRight((acc, curr) => acc + curr, 0)); // Output: 10
登入後複製

28. some() - 測試是否至少有一個元素通過條件

const numbers9 = [1, 2, 3, 4, 5];
console.log(numbers9.some(num => num > 4)); // Output: true
登入後複製

29. find() - 傳回第一個通過條件的元素

const numbers10 = [5, 12, 8, 130, 44];
console.log(numbers10.find(num => num > 10)); // Output: 12
登入後複製

30. findIndex() - 傳回第一個通過條件的索引

const numbers11 = [5, 12, 8, 130, 44];
console.log(numbers11.findIndex(num => num > 10)); // Output: 1
登入後複製

31. findLast() - 傳回最後一個通過條件的元素

const numbers12 = [5, 12, 8, 130, 44];
console.log(numbers12.findLast(num => num > 10)); // Output: 44
登入後複製

要點:

  • 每個方法都有特定的任務,例如排序、反轉或尋找數組中的元素。
  • 有些方法會修改原始數組,例如 sort() 和verse()。
  • 有些方法傳回一個新數組,例如map()和filter()。
  • 一些現代方法,如 toSorted() 和 toReversed(),保持原始數組不變並傳回一個新數組。

?在 LinkedIn 上與我聯絡:

我定期分享 JavaScript、Node.js、React、Next.js、軟體工程、資料結構、演算法等的見解。讓我們一起交流、學習、成長!

跟我來:Nozibul Islam

以上是JavaScript 陣列方法範例:綜合指南(方法)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板