跨浏览器/引擎 Math.PI 始终为 3.141592653589793?

发布于 2024-09-29 15:27:45 字数 96 浏览 3 评论 0原文

只是一个非常随机的问题,但是 JavaScript 中的属性 Math.PI 在每个浏览器/引擎中总是 3.141592653589793 吗?

just a really random question but is the property Math.PI in javascript always 3.141592653589793 in every browser/engine?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倒数 2024-10-06 15:27:45

我应该希望如此。

ECMAScript 规范 说:

15.8.1.6 PI

<块引用>

π 的数值,即圆的周长与其直径的比值,大约为 3.1415926535897932

I should hope so.

The ECMAScript Spec says:

15.8.1.6 PI

The Number value for π, the ratio of the circumference of a circle to its diameter, which is approximately 3.1415926535897932.

永不分离 2024-10-06 15:27:45

这是规范中关于 Math.PI 的内容:

π 的数值,即圆的周长与其直径的比值,大约为 3.1415926535897932。

请注意,它说的是“大约”,这意味着它不保证确切的值。但是,由于数字需要使用标准 IEEE 754 表示形式,因此您可以预期大多数实现具有相似的准确度。

This is what the spec says about Math.PI:

The Number value for π, the ratio of the circumference of a circle to its diameter, which is approximately 3.1415926535897932.

Note that it says "approximately", which means it makes no guarantees about the exact value. However since numbers are required to use the standard IEEE 754 representation, you can expect most implementations to have a similar accuracy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文