天天看點

[譯] 圖解 Map、Reduce 和 Filter 數組方法

原文位址:An Illustrated (and Musical) Guide to Map, Reduce, and Filter Array Methods

原文作者:Una Kravets

譯文出自:掘金翻譯計劃

本文永久連結:github.com/xitu/gold-m…

譯者:熊賢仁

校對者:Endone、Reaper622

文章來源:掘金翻譯計劃

map、reduce 和 filter 是三個非常實用的 JavaScript 數組方法,賦予了開發者四兩撥千斤的能力。我們直接進入正題,看看如何使用(并記住)這些超級好用的方法!

Array.map()

Array.map() 根據傳遞的轉換函數,更新給定數組中的每個值,并傳回一個相同長度的新數組。它接受一個回調函數作為參數,用以執行轉換過程。

let newArray = oldArray.map((value, index, array) => {
  ...
});
           

一個幫助記住 map 的方法:Morph Array Piece-by-Piece(逐個改變數組)

你可以使用 map 代替 for-each 循環,來周遊并對每個值應用轉換函數。這個方法适用于當你想更新數組的同時保留原始值。它不會潛在地删除任何值(filter 方法會),也不會計算出一個新的輸出(就像 reduce 那樣)。map 允許你逐個改變數組。一起來看一個例子:

[1, 4, 6, 14, 32, 78].map(val => val * 10)
// the result is: [10, 40, 60, 140, 320, 780]           

上面的例子中,我們使用一個初始數組([1, 4, 6, 14, 32, 78]),映射每個值到它自己的十倍(val * 10)。結果是一個新數組,初始數組的每個值被這個等式轉換:[10, 40, 60, 140, 320, 780]。

[譯] 圖解 Map、Reduce 和 Filter 數組方法

Array.filter()

當我們想要過濾數組的值到另一個數組,新數組中的每個值都通過一個特定檢查,Array.filter() 這個快捷實用的方法就派上用場了。

類似搜尋過濾器,filter 基于傳遞的參數來過濾出值。

舉個例子,假定有個數字數組,想要過濾出大于 10 的值,可以這樣寫:

[1, 4, 6, 14, 32, 78].filter(val => val > 10)
// the result is: [14, 32, 78]           

如果在這個數組上使用 map 方法,比如在上面這個例子,會傳回一個帶有 val > 10 判斷的和原始數組長度相同的數組,其中每個值都經過轉換或者檢查。如果原始值大于 10,會被轉換為真值。就像這樣:

[1, 4, 6, 14, 32, 78].map(val => val > 10)
// the result is: [false, false, false, true, true, true]           

但是 filter 方法,隻傳回真值。是以如果所有值都執行指定的檢查的話,結果的長度會小于等于原始數組。

把 filter 想象成一個漏鬥。部分混合物會從中穿過進入結果,而另一部分則會被留下并抛棄。

[譯] 圖解 Map、Reduce 和 Filter 數組方法

假設寵物訓練學校有一個四隻狗的小班,學校裡的所有狗都會經過各種挑戰,然後參加一個分級期末考試。我們用一個對象數組來表示這些狗狗:

const students = [
  {
    name: "Boops",
    finalGrade: 80
  },
  {
    name: "Kitten",
    finalGrade: 45
  },
  {
    name: "Taco",
    finalGrade: 100
  },
  {
    name: "Lucy",
    finalGrade: 60
  }
]           

如果狗狗們的期末考試成績高于 70 分,它們會獲得一個精美的證書;反之,它們就要去重修。為了知道證書列印的數量,要寫一個方法來傳回通過考試的狗狗。不必寫循環來周遊數組的每個對象,我們可以用 filter 簡化代碼!

const passingDogs = students.filter((student) => {
  return student.finalGrade >= 70
})

/*
passingDogs = [
  {
    name: "Boops",
    finalGrade: 80
  },
  {
    name: "Taco",
    finalGrade: 100
  }
]
*/           

你也看到了,Boops 和 Taco 是好狗狗(其實所有狗都很不錯),它們取得了通過課程的成就證書!利用箭頭函數的隐式傳回特性,一行代碼就能實作。因為隻有一個參數,是以可以删掉箭頭函數的括号:

const passingDogs = students.filter(student => student.finalGrade >= 70)

/*
passingDogs = [
  {
    name: "Boops",
    finalGrade: 80
  },
  {
    name: "Taco",
    finalGrade: 100
  }
]
*/           

Array.reduce()

reduce() 方法接受一個數組作為輸入值并傳回一個值。這點挺有趣的。reduce 接受一個回調函數,回調函數參數包括一個累計器(數組每一段的累加值,它會像雪球一樣增長),目前值,和索引。reduce 也接受一個初始值作為第二個參數:

let finalVal = oldArray.reduce((accumulator, currentValue, currentIndex, array) => {
  ...
}), initalValue;           
[譯] 圖解 Map、Reduce 和 Filter 數組方法

來寫一個炒菜函數和一個作料清單:

// our list of ingredients in an array
const ingredients = ['wine', 'tomato', 'onion', 'mushroom']

// a cooking function
const cook = (ingredient) => {
  return `cooked ${ingredient}`
}           

如果我們想要把這些作料做成一個調味汁(開玩笑的),用 reduce() 來歸約!

const wineReduction = ingredients.reduce((sauce, item) => {
  return sauce += cook(item) + ', '
}, '')

// wineReduction = "cooked wine, cooked tomato, cooked onion, cooked mushroom, "           

初始值(這個例子中的 '')很重要,它決定了第一個作料能夠進行烹饪。這裡輸出的結果不太靠譜,自己炒菜時要當心。下面的例子就是我要說到的情況:

const wineReduction = ingredients.reduce((sauce, item) => {
  return sauce += cook(item) + ', '
})

// wineReduction = "winecooked tomato, cooked onion, cooked mushroom, "           

最後,確定新字元串的末尾沒有額外的空白,我們可以傳遞索引和數組來執行轉換:

const wineReduction = ingredients.reduce((sauce, item, index, array) => {
  sauce += cook(item)
  if (index < array.length - 1) {
    sauce += ', '
  }
  return sauce
}, '')

// wineReduction = "cooked wine, cooked tomato, cooked onion, cooked mushroom"           

可以用三目操作符、模闆字元串和隐式傳回,寫的更簡潔(一行搞定!):

const wineReduction = ingredients.reduce((sauce, item, index, array) => {
  return (index < array.length - 1) ? sauce += `${cook(item)}, ` : sauce += `${cook(item)}`
}, '')

// wineReduction = "cooked wine, cooked tomato, cooked onion, cooked mushroom"           

記住這個方法的簡單辦法就是回想你怎麼做調味汁:把多個作料歸約到單個。

和我一起唱起來!

我想要用一首歌來結束這篇博文,給數組方法寫了一個小調,來幫助你們記憶:

作者:mogic

連結:

https://juejin.im/post/5caf030d6fb9a068736d2d7c

來源:掘金

著作權歸作者所有。商業轉載請聯系作者獲得授權,非商業轉載請注明出處。

繼續閱讀