JavaScript 中的 Math.exp() 函数

htmljavascriptweb developmentfront end technology

Math 对象的此函数接受一个数字并返回 Ex 的值,其中 x 和 E 是参数和自然对数的欧拉常数。

语法

其语法如下

Math.exp(12)

示例

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

输出

结果: 162754.79141900392

相关文章