Last active
October 28, 2015 12:22
-
-
Save zmts/e6605e6ffacdef0905bd to your computer and use it in GitHub Desktop.
Decorator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://ru.wikipedia.org/wiki/Декоратор_(шаблон_проектирования) | |
// Класс для последующего декорирования | |
function Coffee() { | |
this.cost = function() { | |
return 1; | |
}; | |
} | |
// Decorator A | |
function Milk(func) { | |
this.cost = function() { | |
return func.cost() + 0.5; | |
}; | |
} | |
// Использование: | |
var cup = new Milk(new Coffee()); | |
console.log(cup.cost()); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment