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

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

Siehe auch