映射值

你希望将数组中的所有元素转换为其他形式。

例如,你有

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)