Math.LOG10E

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.LOG10E repräsentiert den dekadischen Logarithmus von e, ungefähr 0,434.

Probieren Sie es aus

function getLog10e() {
  return Math.LOG10E;
}

console.log(getLog10e());
// Expected output: 0.4342944819032518

Wert

𝙼𝚊𝚝𝚑.𝙻𝙾𝙶𝟷𝟶𝙴=log10(e)0.434\mathtt{Math.LOG10E} = \log_{10}(\mathrm{e}) \approx 0.434
Eigenschaften von Math.LOG10E
Schreibbarnein
Aufzählbarnein
Konfigurierbarnein

Beschreibung

Da LOG10E eine statische Eigenschaft von Math ist, wird sie immer als Math.LOG10E verwendet und nicht als Eigenschaft eines von Ihnen erstellten Math-Objekts (Math ist kein Konstruktor).

Beispiele

Verwendung von Math.LOG10E

Die folgende Funktion gibt den dekadischen Logarithmus von e zurück:

js
function getLog10e() {
  return Math.LOG10E;
}

getLog10e(); // 0.4342944819032518

Spezifikationen

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

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
LOG10E

Legend

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

Full support
Full support

Siehe auch