JavaScript 中的 Math.log2() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 log2() 函数接受一个数字并返回给定数字的自然对数(底数为 2)。

语法

其语法如下

Math.log2(48);

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.log2(48);
      document.write("结果: "+result);
   </script>
</body>
</html>

输出

结果: 5.584962500721156

相关文章