List Comprehensions
Problem
You have an array of objects and want to map them to another array, similar to Python’s list comprehensions.
Solution
Use a list comprehension, but don’t forget about mapping arrays.
Discussion
Because CoffeeScript directly support list comprehensions, they work pretty much as advertised wherever you would use one in Python. For simple mappings, list comprehensions are much more readable. For complicated transformations or for chained mappings, mapping arrays might be more elegant.