编写函数求圆的面积

function area(n){
				var area = Math.PI*Math.pow(n,2)
				console.log(area)
			}
			area(5)

你可能感兴趣的:(函数,圆的面积,javascript,前端)