Function definition: Volume of a pyramid Define a function CalculatePyramidVolume with inputs baseLength, baseWidth, and pyramidHeight. The function returns pyramidVolume, the volume of a pyramid with a rectangular base. Hint: Recall that a function declaration begins with 'function'. Pay attention to the spelling and chatacter case of variables. Ex: pyramidvalue and pyramidValue are different variables. Relevant geometry equation: pyramidVolume
=baseLength * baseWidth * pyramidHeight *
(1)/(3)Ex: CalculatePyramidVolume
(1,1,1)returns ans
=0.3333