Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created March 12, 2010 16:51
Show Gist options
  • Save rhyolight/330515 to your computer and use it in GitHub Desktop.
Save rhyolight/330515 to your computer and use it in GitHub Desktop.
function Rectangle(w,h) {
this.width = w;
this.height = h;
}
Rectangle.prototype.area = function() {
return this.width * this.height;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment