1、描述
它返回圆的周长与直径的比值,约为3.14159
。
2、语法
它的语法如下:
Math.PI
3、使用示例
<html> <head> <title>JavaScript Math PI Property</title> </head> <body> <script type = "text/javascript"> var property_value = Math.PI; document.write("Property Value = " + property_value); </script> </body> </html>
4、输出
Property Value = 3.141592653589793