過濾值

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

要僅保留 id 大於 2 的使用者,請使用以下命令:

[{id: 3, username: 'pete'}]

方法 1 - 使用 .filter

filteredUsers = theUsers.filter (user) -> user.id >= 2

方法 2 - 使用理解

filteredUsers = (user for user in theUsers when user.id >= 2)