write a javascript program to calculate the volume of sphere
Answers
Answered by
0
Answer:
let radius = 5; let volume = (4/3)* Math. PI * Math. pow(radius, 3); console. log('Volume of Sphere: '+volume.
1. radius is the given radius of the sphere.
2. The volume is holding the volume of the sphere. ...
3. Finally, the last line is printing this value.
Explanation:
Answered by
0
Answer:5; let volume = (4/3)* Math. PI * Math. pow(radius, 3); console. log('Volume of Sphere: '+volume
Explanation:
Similar questions