Write a complete JavaScript program to prompt the user for the radius of a sphere, then call function sphere_surface to calculate and display the surface of the sphere.
Hint: Use the statement volume = (4.0 ) * Math. PI * Math. pow ( radius, 2 ) to calculate the volume.