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
Eigenschaften von Math.LOG10E | |
---|---|
Schreibbar | nein |
Aufzählbar | nein |
Konfigurierbar | nein |
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 GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LOG10E |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.