,

2012-02-14から1日間の記事一覧

The Decorator Pattern

//The class we're going to decorate function Macbook(){ this.cost = function(){ return 1000; }; } function Memory(macbook){ this.cost = function(){ return macbook.cost() + 75; }; } function BlurayDrive(macbook){ this.cost = function(){ ret…