当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Math.exp( )用法及代码示例


JavaScript中的Math.exp()函数用于返回ex,其中x是自变量,e是欧拉数,它是自然对数的底数。
exp()是Math的静态方法,因此,它始终用作Math.exp(),而不是用作创建的Math对象的方法。

用法:

Math.exp(value)

使用的参数:此函数接受单个参数值是其ex您想找到。


返回:Math.exp()函数返回ex其中e是欧拉数,x是自变量。

例子:

  1. 将零作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(0)); 
    </script>

    输出:

    Output : 1
  2. 当“-1”作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(-1)); 
    </script>

    输出:

    Output : 0.36787944117144233 
  3. 当“1”作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(1)); 
    </script>

    输出:

    Output :  2.718281828459045 

支持的浏览器:下面列出了JavaScript Math.exp()函数支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器



注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 Math.exp() In JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。