(base, height)
| 112 | * @example areaParallelogram(5, 6) = 24 |
| 113 | */ |
| 114 | const areaParallelogram = (base, height) => { |
| 115 | validateNumericParam(base, 'Base') |
| 116 | validateNumericParam(height, 'Height') |
| 117 | return base * height |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * @function areaTrapezium |
nothing calls this directly
no test coverage detected