欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JavaScript返回2的自然对数(约等于0.693)的属性LN2

程序员文章站 2022-04-18 23:36:07
...

定义和用法

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的详细内容,更多请关注其它相关文章!