Skip to content

Instantly share code, notes, and snippets.

@regepan
Created December 5, 2013 07:21
Show Gist options
  • Save regepan/7801434 to your computer and use it in GitHub Desktop.
Save regepan/7801434 to your computer and use it in GitHub Desktop.
function ImmutableRectangle(){
this.getWidth = function(w){
console.debug('上書きできるぜ!');
}
}
ImmutableRectangle.prototype.getWidth = function(w){
console.debug('prototypeの定義だぜ', w);
}
var r = new ImmutableRectangle();
r.getWidth(100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment