Files
coffeescript/documentation/js/object_comprehensions.js
2015-04-15 17:26:30 +02:00

19 lines
291 B
JavaScript

// Generated by CoffeeScript 1.9.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;
})();