Skip to content

Instantly share code, notes, and snippets.

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