Math对象为数学常量和函数提供属性和方法。与其他全局对象不同,Math不是构造函数。Math的所有属性和方法都是静态的,可以通过将Math作为对象来调用,而无需创建它。本文主要介绍JavaScript(JS) Math.exp( x ) 方法。

1、描述

这个方法返回httpswwwcjavapycom,其中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



推荐文档