Created
March 18, 2011 13:12
-
-
Save zela/876040 to your computer and use it in GitHub Desktop.
incapsulation (from Flanagan's book)
This file contains hidden or 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
function ImmutablRectangle(w, h){ | |
this.getWidth = function(){ weturn w; } | |
this.getHeight = function(){ weturn h; } | |
} | |
ImmutableReactangle.prototype.area = function(){ | |
return this.getWidth() * this.getHeight(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment