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 Dateneigenschaft Math.E repräsentiert die Eulersche Zahl, die Basis des natürlichen Logarithmus, e, welche 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 und nicht als eine Eigenschaft eines von Ihnen 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® 2025 Language Specification
# sec-math.e

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch