Skip to content

Instantly share code, notes, and snippets.

@regepan
Created December 5, 2013 06:55
Show Gist options
  • Save regepan/7801225 to your computer and use it in GitHub Desktop.
Save regepan/7801225 to your computer and use it in GitHub Desktop.
function ImmutableRectangle(w){
this.getWidth = function(){
return w;
}
}
var r = new ImmutableRectangle(100);
console.debug(r.getWidth());// 100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment