對映值

你希望將陣列中的所有元素轉換為其他形式。

例如,你有

theUsers = [
  {id: 1, username: 'john'}
  {id: 2, username: 'lexy'}
  {id: 3, username: 'pete'}
]

並且你想只有一個使用者名稱陣列,即

['john', 'lexy', 'pete']

方法 1 - 使用 .map

theUsernames = theUsers.map (user) -> user.username

方法 2 - 使用理解

theUsernames = (user.username for user in theUsers)