<kbd id="afajh"><form id="afajh"></form></kbd>
<strong id="afajh"><dl id="afajh"></dl></strong>
    <del id="afajh"><form id="afajh"></form></del>
        1. <th id="afajh"><progress id="afajh"></progress></th>
          <b id="afajh"><abbr id="afajh"></abbr></b>
          <th id="afajh"><progress id="afajh"></progress></th>

          JS數(shù)組中 forEach() 和 map() 的區(qū)別

          共 2023字,需瀏覽 5分鐘

           ·

          2020-12-31 19:47

          英文 | https://codingnconcepts.com/

          今天我們來看一下 Array中 Array.forEach()和 Array.map()方法之間的區(qū)別。
          forEach()和map()方法通常用于遍歷Array元素,但幾乎沒有區(qū)別,我們來一一介紹。

          1、返回值

          forEach()方法返回undefined ,而map()返回一個包含已轉換元素的新數(shù)組。
          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,所以我們需要傳遞一個空數(shù)組來創(chuàng)建一個新的轉換后的數(shù)組。map()方法不存在這樣的問題,它直接返回新的轉換后的數(shù)組。在這種情況下,建議使用map()方法。

          2、鏈接其他方法

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

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

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

          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); // 55console.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.596923828125msmap:     21.97998046875ms

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

          4、中斷遍歷

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

          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循環(huán)或for-of/for-in循環(huán)。

          const numbers = [1, 2, 3, 4, 5];
          //break;insidefor-ofloopconst squareUsingForEach = [];for(x of numbers){ if(x == 3) break; squareUsingForEach.push(x*x);};
          console.log(squareUsingForEach); //[1,4]

          5、?最后

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

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

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

          本文完?


          瀏覽 79
          點贊
          評論
          收藏
          分享

          手機掃一掃分享

          分享
          舉報
          評論
          圖片
          表情
          推薦
          點贊
          評論
          收藏
          分享

          手機掃一掃分享

          分享
          舉報
          <kbd id="afajh"><form id="afajh"></form></kbd>
          <strong id="afajh"><dl id="afajh"></dl></strong>
            <del id="afajh"><form id="afajh"></form></del>
                1. <th id="afajh"><progress id="afajh"></progress></th>
                  <b id="afajh"><abbr id="afajh"></abbr></b>
                  <th id="afajh"><progress id="afajh"></progress></th>
                  午夜精品久久久99热蜜桃的推荐系统 | 操b视频无码 | 自拍偷拍中文字幕 | 天天鲁天天谢天天擦 | 免费成人黄色电影视频 |