Title1

Title2

Title3

4-3 map()

 

參考:https://wcc723.github.io/javascript/2017/06/29/es6-native-array/#Array-prototype-map

使用 map() 時他需要回傳一個值,他會透過函式內所回傳的值組合成一個陣列。

  • 如果不回傳則是 undefined
  • 回傳數量等於原始陣列的長度

這很適合將原始的變數運算後重新組合一個新的陣列。