JavaScript Math.LN2的使用方法介绍
这是一个欧拉常数和自然对数的基数,约为 2.718.
语法:
Math.E
示例:
<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
本文地址:http://www.45fan.com/bcdm/13358.html