Skip to content

Instantly share code, notes, and snippets.

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