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.
La propriété Math.LOG10E
fournit la valeur du logarithme en base 10 de e, environ 0.434 :
Exemple interactif
Attributs de Math.LOG10E | |
---|---|
Écrivable | Non |
Énumérable | Non |
Configurable | Non |
Description
LOG10E
étant une propriété statique de Math
, elle doit toujours être utilisée avec la syntaxe Math.LOG10E
et ne pas être appelée comme propriété d'un autre objet qui aurait été créé (Math
n'est pas un constructeur).
Exemples
Utiliser Math.LOG10E
La fonction suivante renvoie le logarithme en base 10 de e :
js
function getLog10e() {
return Math.LOG10E;
}
getLog10e(); // 0.4342944819032518
Spécifications
Specification |
---|
ECMAScript Language Specification # sec-math.log10e |
Compatibilité des navigateurs
BCD tables only load in the browser