LOG10E Math class property
JS Home <<
JS Reference <<
Math <<
LOG10E
Description
Returns the Base 10 logarithm of E.
- Like all class properties
LOG10Eshould be used on the class rather than an instance of the class.
Syntax
| Signature | Description |
|---|---|
Math.LOG10E | Returns the Base 10 logarithm of E. |
Parameters
None.
Examples
The code below displays LOG10E usage.
alert('Base 10 logarithm of E: ' + Math.LOG10E) // 0.434294...
Related Tutorials
JavaScript Advanced Tutorials - Lesson 4 - Math
