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.

Die statische Daten-Eigenschaft Math.E repräsentiert die eulersche Zahl, die Basis der natürlichen Logarithmen, e, die ungefähr 2.718 beträgt.

Probieren Sie es aus

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

Wert

𝙼𝚊𝚝𝚑.𝙴=e2.718\mathtt{Math.E} = e \approx 2.718
Eigenschaften von Math.E
Schreibbarnein
Aufzählbarnein
Konfigurierbarnein

Beschreibung

Da E eine statische Eigenschaft von Math ist, wird sie immer als Math.E verwendet, anstatt als Eigenschaft eines erstellten Math-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.E

Die folgende Funktion gibt e zurück:

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

getNapier(); // 2.718281828459045

Spezifikationen

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

Browser-Kompatibilität

Siehe auch