(radius)
| 24 | * @example surfaceAreaSphere(5) = 314.1592653589793 |
| 25 | */ |
| 26 | const surfaceAreaSphere = (radius) => { |
| 27 | validateNumericParam(radius, 'radius') |
| 28 | return 4.0 * Math.PI * radius ** 2.0 |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * @function areaRectangle |
nothing calls this directly
no test coverage detected