Describes the use of the ES1en.LOG10ES3en attribute in JavaScript

  • 2020-06-15 07:40:43
  • OfStack

This returns the value of E at base 10, which is about 0.434.
grammar


Math.LOG10E

Example:


<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>

This will produce the following results:


Property Value is : 0.4342944819032518 


Related articles: