Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created March 19, 2010 16:28
Show Gist options
  • Save rhyolight/337781 to your computer and use it in GitHub Desktop.
Save rhyolight/337781 to your computer and use it in GitHub Desktop.
Rectangle.prototype.perimeter = function() {
return 2 * this.getWidth() + 2 * this.getHeight();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment