Skip to content

Instantly share code, notes, and snippets.

@snowmantw
Created March 28, 2016 13:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snowmantw/7bb5135a723ac0e2bfdb to your computer and use it in GitHub Desktop.
Save snowmantw/7bb5135a723ac0e2bfdb to your computer and use it in GitHub Desktop.
var Cuboid = function() {
this.volume = function() {
return this.cuboidSize[0] *
this.cuboidSize[1] *
this.cuboidSize[2] ;
};
};
Cuboid.prototype.cuboidSize = [12, 8, 10];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment