• JavaScript Video Tutorials

JavaScript - Math LN10 Property



Description

It returns the natural logarithm of 10 which is approximately 2.302.

Syntax

Its syntax is as follows −

Math.LN10

Example

Try the following example program.

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

Output

Property Value is : 2.302585092994046 
javascript_math_object.htm
Advertisements