(width, length, height)
| 18 | return width * length * height |
| 19 | */ |
| 20 | const volCuboid = (width, length, height) => { |
| 21 | isNumber(width, 'Width') |
| 22 | isNumber(length, 'Length') |
| 23 | isNumber(height, 'Height') |
| 24 | return width * length * height |
| 25 | } |
| 26 | |
| 27 | /* |
| 28 | Calculate the volume for a Cube |
nothing calls this directly
no test coverage detected