Math.PI

Math.PI 表示一个圆的周长与直径的比例,约为 3.14159:

\mathtt{\mi{Math.PI}}= \pi pprox 3.14159

Math.PI 属性的属性特性:
writable false
enumerable false
configurable false

描述

由于 PI Math 的静态属性,所以应该像这样使用: Math.PI ,而不是作为你创建的 Math 实例的属性( Math 不是构造函数)。

示例

使用 Math.PI

下面的函数使用 Math.PI 计算给定半径的圆周长:

function calculateCircumference (radius) {
  return 2 * Math.PI * radius;
}

calculateCircumference(1);  // 6.283185307179586

上篇: Math.LOG2E

下篇: Math.SQRT1_2