Skip to content

Instantly share code, notes, and snippets.

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