Created
December 5, 2013 07:21
-
-
Save regepan/7801434 to your computer and use it in GitHub Desktop.
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
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