定義與用法
LN2 屬性就是 loge2,即 2 的自然對數,其值近似於 0.69314718055994528623。
語法
Math.LN2
實例
傳回2 的自然對數:
<script type="text/javascript"> document.write("LN2: " + Math.LN2); </script>
輸出:
LN2: 0.6931471805599453
範例:
<html> <head> <title>JavaScript Math E Property</title> </head> <body> <script type="text/javascript"> var property_value = Math.E document.write("Property Value is : " + property_value); </script> </body> </html>
這將產生以下結果:
Property Value is : 2.718281828459045
以上是JavaScript傳回2的自然對數(約等於0.693)的屬性LN2的詳細內容。更多資訊請關注PHP中文網其他相關文章!