Skip to content

Instantly share code, notes, and snippets.

@TatyCat
Created February 11, 2019 23:55
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 TatyCat/a4f9bccf7427c0724979eb1cd42286d4 to your computer and use it in GitHub Desktop.
Save TatyCat/a4f9bccf7427c0724979eb1cd42286d4 to your computer and use it in GitHub Desktop.
Volume of a Cuboid - Kata
var Kata;
Kata = (function() {
function Kata() {}
Kata.getVolumeOfCuboid = function(length, width, height){return length * width * height};
return Kata;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment