Files
coffeescript/documentation/js/constructor_destructuring.js
Jeremy Ashkenas 84b8b5ccee CoffeeScript 1.6.3
2013-06-02 09:37:45 +04:00

12 lines
213 B
JavaScript

// Generated by CoffeeScript 1.6.3
var Person;
Person = (function() {
function Person(options) {
this.name = options.name, this.age = options.age, this.height = options.height;
}
return Person;
})();