Tagged Questions
0
votes
4answers
119 views
Does it matter when a decorator gets called (at the beginning or at the end of the method) in the decorator pattern?
I'm implementing a decorator pattern in Javascript.
I've seen the example here in Wikipedia
// Class to be decorated
function Coffee() {
this.cost = function() {
return 1;
};
}
// ...