如何表示数学常数“e”?作为 JavaScript 中的值?

发布于 2024-08-30 06:18:19 字数 36 浏览 4 评论 0原文

如何在 JavaScript 中将数学常量“e”表示为值?

How can you represent mathematical constant "e" as a value in JavaScript?

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

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

发布评论

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

评论(7

南巷近海 2024-09-06 06:18:19

这很简单

Math.E

It's as easy as

Math.E
放飞的风筝 2024-09-06 06:18:19

其他方法包括:

Math.exp(1)

近似值:

3-sqrt(5/63)

(Math.PI^4 + Math.PI^5)^(1/6)

适合 7 位数字

163^(32/163) 适合 6 位数字

Other ways include:

Math.exp(1)

Approximations:

3-sqrt(5/63)

or

(Math.PI^4 + Math.PI^5)^(1/6)

which are good to 7 digits

and

163^(32/163) which is good to 6 digits

旧话新听 2024-09-06 06:18:19

答案太短了,所以这里有一个更长的版本。

数学E

Answer was too short, so here is a much much longer version.

Math.E

平安喜乐 2024-09-06 06:18:19

我相信 Math.E 就是您想要的。

I believe Math.E is what you want.

相守太难 2024-09-06 06:18:19

您可以使用常量:

Math.E

You could use the constant:

Math.E
硪扪都還晓 2024-09-06 06:18:19

JavaScript 提供了许多可以从 Math 对象 访问的数学常量。

你想要的是 Math.E

JavaScript provides many mathematical constants that can be accessed from the Math object.

The one you want is Math.E

那片花海 2024-09-06 06:18:19

e 由 Math.E 表示。但如果您的目的是计算 e^x,则不要编写 Math.E^x。请改用 Math.exp(x)。这并不是第一次有人在真正想要 exp 时要求 e。

e is represented by Math.E. But if your intention is to compute e^x, don't write Math.E^x. Use Math.exp(x) instead. It wouldn't be the first time someone has asked for e when they really want exp.

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