Files
coffeescript/documentation/js/object_comprehensions.js
Jeremy Ashkenas a3e8de338a CoffeeScript 1.6.2
2013-03-18 13:06:33 +08:00

20 lines
301 B
JavaScript

// Generated by CoffeeScript 1.6.2
var age, ages, child, yearsOld;
yearsOld = {
max: 10,
ida: 9,
tim: 11
};
ages = (function() {
var _results;
_results = [];
for (child in yearsOld) {
age = yearsOld[child];
_results.push("" + child + " is " + age);
}
return _results;
})();