Skip to content

Instantly share code, notes, and snippets.

@regepan
Created December 5, 2013 07:13
Show Gist options
  • Save regepan/7801384 to your computer and use it in GitHub Desktop.
Save regepan/7801384 to your computer and use it in GitHub Desktop.
function ImmutableRectangle(){}
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