offline version v3


56 of 264 menu

Math.LOG10E property

The Math.LOG10E property returns the value of the base 10 logarithm of e (exponential constant).

Syntax

Math.LOG10E;

Example

Let's output the value of the base 10 logarithm of e:

console.log(Math.LOG10E);

The code execution result:

0.4342944819032518

See also

  • the Math.LN2 property
    that returns the value of the natural logarithm of two
  • the Math.LN10 property
    that returns the value of the natural logarithm of ten
  • the Math.LOG2E property
    that returns the base 2 logarithm of e
  • the Math.log method
    that returns the natural logarithm of a number
enru