Created
February 11, 2019 23:55
-
-
Save TatyCat/a4f9bccf7427c0724979eb1cd42286d4 to your computer and use it in GitHub Desktop.
Volume of a Cuboid - Kata
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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