jashkenas--coffeescript/documentation/js/overview.js

32 lines
627 B
JavaScript
Raw Normal View History

(function(){
2009-12-26 07:17:34 +00:00
var __a, __b, __c, __d, cubed_list, list, math, num, number, opposite_day, square;
// Assignment:
2009-12-26 07:17:34 +00:00
number = 42;
opposite_day = true;
// Conditions:
if (opposite_day) {
number = -42;
}
// Functions:
2009-12-26 07:17:34 +00:00
square = function(x) {
return x * x;
};
// Arrays:
2009-12-26 07:17:34 +00:00
list = [1, 2, 3, 4, 5];
// Objects:
2009-12-26 07:17:34 +00:00
math = {
root: Math.sqrt,
square: square,
cube: function(x) {
return x * square(x);
}
};
// Array comprehensions:
2009-12-26 07:17:34 +00:00
__a = list;
__d = [];
for (__b=0, __c=__a.length; __b<__c; __b++) {
num = __a[__b];
2009-12-25 08:16:56 +00:00
__d[__b] = math.cube(num);
}
2009-12-25 08:16:56 +00:00
cubed_list = __d;
})();