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.E プロパティはネイピア数 (オイラー数) です。これは、自然対数の底として用いられる数学定数で、約 2.718 です。

Math.E=e2.718\mathtt{\mi{Math.E}} = e \approx 2.718

Property attributes of Math.E
Writable no
Enumerable no
Configurable no

詳細

E は、Math の静的プロパティなので、自ら生成した Math オブジェクトのプロパティとしてではなく、常に、Math.E として使用するようにしてください (Math は、コンストラクタではありません)。

例: Math.E の使用

以下の関数は、e を返します:

function getNapier() {
  return Math.E;
}

getNapier(); // 2.718281828459045

仕様

仕様 ステータス コメント
ECMAScript 1st Edition. Standard 初回定義。JavaScript 1.0 で実装。
ECMAScript 5.1 (ECMA-262)
The definition of 'Math.E' in that specification.
Standard  
ECMAScript 6 (ECMA-262)
The definition of 'Math.E' in that specification.
勧告候補  

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート (有) (有) (有) (有) (有)
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート (有) (有) (有) (有) (有) (有)

関連情報

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

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