JavaScript 中的 Math.log1p() 函数


Math 对象的 log1p() 函数接受一个数字并返回(给定数字 + 1)的自然对数(以 E 为底)。

语法

其语法如下

Math.log1p(48);

示例

 在线演示

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.log1p(48);
      document.write("Result: "+result);
   </script>
</body>
</html>

输出

Result: 3.8918202981106265

更新于: 2020 年 6 月 25 日

52 次浏览

开始你的职业生涯

完成课程以获得认证

开始
广告