Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created March 19, 2010 16:28
Show Gist options
  • Save rhyolight/337779 to your computer and use it in GitHub Desktop.
Save rhyolight/337779 to your computer and use it in GitHub Desktop.
var rect = new Rectangle(2,3);
document.write('area of ' + rect + ': ' + rect.area() + '<br/>');
rect.setWidth(5);
document.write('area of ' + rect + ': ' + rect.area() + '<br/>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment