Math.E

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Math.E プロパティはオイラー定数である、自然対数の底 (e)、約 2.718 を表します。

試してみましょう

function compoundOneYear(interestRate, currentVal) {
  return currentVal * Math.E ** interestRate;
}

console.log(Math.E);
// Expected output: 2.718281828459045

console.log((1 + 1 / 1000000) ** 1000000);
// Expected output: 2.718280469 (approximately)

console.log(compoundOneYear(0.05, 100));
// Expected output: 105.12710963760242

𝙼𝚊𝚝𝚑.𝙴=e2.718\mathtt{\mi{Math.E}} = e \approx 2.718
Math.E のプロパティ属性
書込可能不可
列挙可能不可
設定可能不可

解説

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

Math.E の使用

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

js
function getNapier() {
  return Math.E;
}

getNapier(); // 2.718281828459045

仕様書

Specification
ECMAScript® 2025 Language Specification
# sec-math.e

ブラウザーの互換性

Report problems with this compatibility data on GitHub
desktopmobileserver
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Deno
Node.js
E

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support

関連情報