LOG10E

The base 10 logarithm of E (approximately 0.434). LOG10E is static, read-only.

Property of

Math

Example

The following function returns the base 10 logarithm of E:

function getLog10e() {
      return Math.LOG10E
}

Description

Because LOG10E is a static property of Math, you always use it as Math.LOG10E, rather than as a property of a Math object you created.