• JavaScript Video Tutorials

JavaScript - Math LOG10E Property



Description

It returns the base 10 logarithm of E which is approximately 0.434.

Syntax

Its syntax is as follows −

Math.LOG10E

Example

Try the following example program.

<html>   
   <head>
      <title>JavaScript Math LOG10E Property</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var property_value = Math.LOG10E 
         document.write("Property Value is : " + property_value);
      </script>      
   </body>
</html>

Output

Property Value is : 0.4342944819032518
javascript_math_object.htm
Advertisements