A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Math/E below:

Math.E - JavaScript | MDN

Math.E

Baseline Widely available

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
値 𝙼𝚊𝚝𝚑.𝙴 = e ≈ 2.718 \mathtt{\mi{Math.E}} = e \approx 2.718 書込可能 不可 列挙可能 不可 設定可能 不可 解説

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

例 Math.E の使用

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

function getNapier() {
  return Math.E;
}

getNapier(); // 2.718281828459045
仕様書 ブラウザーの互換性 関連情報

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4