91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Array中forEach()和map()有什么不同

發布時間:2020-12-25 10:01:30 來源:億速云 閱讀:193 作者:小新 欄目:web開發

小編給大家分享一下Array中forEach()和map()有什么不同,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

Array中 Array.forEach()Array.map()方法之間的區別。

forEach()map()方法通常用于遍歷Array元素,但幾乎沒有區別,我們來一一介紹。

1.返回值

forEach()方法返回undefined ,而map()返回一個包含已轉換元素的新數組。

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

// 使用 forEach()
const squareUsingForEach = [];
numbers.forEach(x => squareUsingForEach.push(x*x));

// 使用 map()
const squareUsingMap = numbers.map(x => x*x);

console.log(squareUsingForEach); // [1, 4, 9, 16, 25]
console.log(squareUsingMap);     // [1, 4, 9, 16, 25]

由于forEach()返回undefined,所以我們需要傳遞一個空數組來創建一個新的轉換后的數組。map()方法不存在這樣的問題,它直接返回新的轉換后的數組。在這種情況下,建議使用map()方法。

2.鏈接其他方法

map()方法輸出可以與其他方法(如reduce()sort()filter())鏈接在一起,以便在一條語句中執行多個操作。

另一方面,forEach()是一個終端方法,這意味著它不能與其他方法鏈接,因為它返回undefined

我們使用以下兩種方法找出數組中每個元素的平方和:

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

// 使用 forEach()
const squareUsingForEach = []
let sumOfSquareUsingForEach = 0;
numbers.forEach(x => squareUsingForEach.push(x*x));
squareUsingForEach.forEach(square => sumOfSquareUsingForEach += square);

// 使用 map()
const sumOfSquareUsingMap = numbers.map(x => x*x).reduce((total, value) => total + value)
;

console.log(sumOfSquareUsingForEach); // 55
console.log(sumOfSquareUsingMap);     // 55

當需要多個操作時,使用forEach()方法是一項非常乏味的工作。我們可以在這種情況下使用map()方法。

3.性能

// Array:
var numbers = [];
for ( var i = 0; i < 1000000; i++ ) {
    numbers.push(Math.floor((Math.random() * 1000) + 1));
}

// 1. forEach()
console.time("forEach");
const squareUsingForEach = [];
numbers.forEach(x => squareUsingForEach.push(x*x));
console.timeEnd("forEach");

// 2. map()
console.time("map");
const squareUsingMap = numbers.map(x => x*x);
console.timeEnd("map");

這是在MacBook Pro的 Google Chrome v83.0.4103.106(64位)上運行上述代碼后的結果。 建議復制上面的代碼,然后在自己控制臺中嘗試一下。

forEach: 26.596923828125ms
map:     21.97998046875ms

顯然,map()方法比forEach()轉換元素要好。

4.中斷遍歷

這兩種方法都不能用 break 中斷,否則會引發異常:

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

// break; inside forEach()
const squareUsingForEach = [];
numbers.forEach(x => { 
  if(x == 3) break; // <- SyntaxError 
  squareUsingForEach.push(x*x);
});

// break; inside map()
const squareUsingMap = numbers.map(x => {
  if(x == 3) break; // <- SyntaxError 
  return x*x;
});

上面代碼會拋出 SyntaxError

? Uncaught SyntaxError: Illegal break statement

如果需要中斷遍歷,則應使用簡單的for循環或for-of/for-in循環。

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

// break; inside for-of loop
const squareUsingForEach = [];
for(x of numbers){
  if(x == 3) break;
  squareUsingForEach.push(x*x);
};

console.log(squareUsingForEach); // [1, 4]

5. 最后

建議使用map()轉換數組的元素,因為它語法短,可鏈接且性能更好。

如果不想返回的數組或不轉換數組的元素,則使用forEach() 方法。

最后,如果要基于某種條件停止或中斷數組的便利,則應使用簡單的for循環或for-of / for-in循環。

看完了這篇文章,相信你對“Array中forEach()和map()有什么不同”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白河县| 寿宁县| 商水县| 兴海县| 怀安县| 乌兰浩特市| 阳城县| 大同县| 江津市| 济南市| 民勤县| 新安县| 永善县| 高雄县| 寻乌县| 喜德县| 漾濞| 阿拉善右旗| 时尚| 泗阳县| 上思县| 和硕县| 门头沟区| 迁安市| 尖扎县| 东光县| 青河县| 安新县| 剑河县| 济源市| 奈曼旗| 连云港市| 车致| 富顺县| 建宁县| 方山县| 酉阳| 正阳县| 双江| 逊克县| 福贡县|