此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
Math.PI
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
Math.PI 静态数据属性表示圆的周长与直径的比例,其值约为 3.14159。
In this article
尝试一下
function calculateCircumference(radius) { return 2 * Math.PI * radius;}console.log(Math.PI);// Expected output: 3.141592653589793console.log(calculateCircumference(10));// Expected output: 62.83185307179586值
Math.PI 的属性特性 | |
|---|---|
| 可写 | 否 |
| 可枚举 | 否 |
| 可配置 | 否 |
描述
由于PI 是Math 的静态属性,因此应始终使用Math.PI,而不是作为你创建的Math 对象的属性(Math 不是构造函数)。
示例
>使用 Math.PI
以下函数使用Math.PI 来计算给定半径的圆周长。
js
function calculateCircumference(radius) { return Math.PI * (radius + radius);}calculateCircumference(1); // 6.283185307179586规范
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-math.pi> |