JS Math.PI
🌙
手机阅读
本文目录结构
使用
概述
Math.PI
表示一个圆的周长与直径的比例,约为 3.14159:
Math.PI=π≈3.14159\mathtt{\mi{Math.PI}} = \pi \approx 3.14159
Math.PI 属性的属性特性: |
---|
writable |
enumerable |
configurable |
描述
由于 PI
是 Math
的静态属性,所以应该像这样使用:Math.PI
,而不是作为你创建的 Math
实例的属性(Math
不是构造函数)。
示例
使用 Math.PI
下面的函数使用 Math.PI 计算给定半径的圆周长:
function calculateCircumference (radius) {
return 2 * Math.PI * radius;
}
calculateCircumference(1); // 6.283185307179586
规范
规范版本 | 规范状态 | 注解 |
---|---|---|
ECMAScript 1st Edition. Implemented in JavaScript 1.0 | Standard | Initial definition. |
ECMAScript 5.1 (ECMA-262) Math.PI | Standard | |
ECMAScript 2015 (6th Edition, ECMA-262)Math.PI | Standard |
相关链接
- The
Math
object it belongs to.