jashkenas--coffeescript/documentation/js/object_extraction.js

18 lines
366 B
JavaScript
Raw Normal View History

2010-01-11 22:55:01 -05:00
(function(){
2010-05-15 01:18:05 -04:00
var _a, _b, _c, city, futurists, name, street;
2010-01-11 22:55:01 -05:00
futurists = {
sculptor: "Umberto Boccioni",
painter: "Vladimir Burliuk",
poet: {
name: "F.T. Marinetti",
address: ["Via Roma 42R", "Bellagio, Italy 22021"]
}
};
2010-02-21 11:45:03 -05:00
_a = futurists;
_b = _a.poet;
2010-05-15 01:18:05 -04:00
name = _b.name;
2010-02-21 11:45:03 -05:00
_c = _b.address;
street = _c[0];
city = _c[1];
2010-02-24 18:27:10 -05:00
})();