Files
coffeescript/documentation/js/object_comprehensions.js
2016-10-01 20:58:53 +02:00

19 lines
292 B
JavaScript

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