Definition and Usage The LOG10E property returns the base-10 logarithm of E, approximately 0.434. Syntax Math.LOG10E Example ...
Definition and Usage
The LOG10E property returns the base-10 logarithm of E, approximately 0.434.Syntax
Math.LOG10E |
Example
<script type="text/javascript"> document.write("LOG10E: " + Math.LOG10E); </script> |
The output of the code above will be:
LOG10E: 0.4342944819032518 |