jashkenas--coffeescript/documentation/examples/object_comprehensions.coffee

5 lines
94 B
CoffeeScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
yearsOld = max: 10, ida: 9, tim: 11
2010-07-29 04:51:35 +00:00
ages = for child, age of yearsOld
"#{child} is #{age}"