This returns natural logarithm of 10 which is approximately 2.302.
Math.LN10
<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>
This will produce following result:
Property Value is : 2.302585092994046
To understand it in better way you can Try it yourself.
Advertisement