如何在 JavaScript 中获取 E 的 2 为底的对数?
若要获取 E 的 2 为底的对数,请使用 Math LOG2E 属性。它返回 E 的 2 为底的对数,约为 1.442。
示例
你可以尝试运行以下代码来在 JavaScript 中获取 E 的 2 为底的对数
<html> <head> <title>JavaScript Math LOG2E Property</title> </head> <body> <script> var property_value = Math.LOG2E document.write("Property Value is : " + property_value); </script> </body> </html>
广告