1、描述
这个方法返回x
是参数,E
是欧拉常数,自然对数的底。
2、语法
其语法如下:
Math.exp( x ) ;
3、参数
x :一个数字。
4、返回值
返回变量x
的指数值。
5、使用示例
<html>
<head>
<title>JavaScript Math exp() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.exp(1);
document.write("1 : " + value );
var value = Math.exp(30);
document.write("<br />30 : " + value );
var value = Math.exp(-1);
document.write("<br />-1 : " + value );
var value = Math.exp(0.5);
document.write("<br />0.5 : " + value );
</script>
</body>
</html>
6、输出
1 : 2.718281828459045 30 : 10686474581524.463 -1 : 0.36787944117144233 0.5 : 1.6487212707001282