Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.exp()

概要

Ex を返します。ここでの x は引数、E は、自然対数の底であるネイピア数(オイラー数)です。

構文

Math.exp(x)

引数

x
数値(数値に変換できる値)

詳細

expMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.exp() として使用するようにしてください。

例:Math.exp の使用

以下の関数は、変数 x の指数値を返します。:

function getExp(x) {
   return Math.exp(x);
}

getExp に 1 を渡した場合、このメソッドは、2.718281828459045 を返します。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,