(length, width)
| 38 | * @example areaRectangle(4) = 16 |
| 39 | */ |
| 40 | const areaRectangle = (length, width) => { |
| 41 | validateNumericParam(length, 'Length') |
| 42 | validateNumericParam(width, 'Width') |
| 43 | return width * length |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * @function areaSquare |
nothing calls this directly
no test coverage detected