Skip to content

Instantly share code, notes, and snippets.

@zela
Created March 18, 2011 13:12
Show Gist options
  • Save zela/876040 to your computer and use it in GitHub Desktop.
Save zela/876040 to your computer and use it in GitHub Desktop.
incapsulation (from Flanagan's book)
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