CoffeeScript Filters: Beyond The Basics – Pro Tips Inside
The coffeescript docs state that list comprehensions should be able to do the select/filter operations: They should be able to handle most places where you otherwise would. The filter method in coffeescript allows developers to create a new array containing elements that meet specified criteria. The method works similarly to its javascript. You want to be able to filter arrays based on a boolean condition.
basics workshop beyond