JavaScript Math LOG10E Property
Below is the example of the Math LOG10E Property.
- Example:
Javascript
<script> // Here value of Math.LOG10E is printed. document.write(Math.LOG10E); </script> |
Output:
0.4342944819032518
The Math.LOG10E is a property in JavaScript which is simply used to find the value of base 10 logarithm of e, where e is an irrational and transcendental number approximately equal to 2.718
Syntax:
Math.LOG10E;
Return Values: It simply return the value of base 10 logarithm of e.
Below example illustrates the Math LOG10E property in JavaScript.
- Example: Here simply value of base 10 logarithm of e is shown as output.
Input : Math.LOG10E Output: 0.4342944819032518
More codes for the above property are as follows:
Program 1: Value of base 10 logarithm of e can be printed as in the form of function as shown below.
Javascript
<script> // function is being called. function get_Value_of_base_10_lagarithm_of_e() { return Math.LOG10E; } // function is calling. document.write(get_Value_of_base_10_lagarithm_of_e()); </script> |
Output:
0.4342944819032518
Program 2:Here we consider Math.LOG10E as a function but in actual it is a property that
Javascript
<script> // Here we consider Math.LOG10E as a function // but in actual it is a property that is why // error as output is being shown. document.write(Math.LOG10E(12)); </script> |
Output:
Error: Math.LOG10E is not a function
Program 3: Whenever we need to find the value of base 10 logarithms of e that time we take the help of this property. In mathematics, it needed a lot.
Javascript
<script> // Value of Math.LOG10E is printed. document.write(Math.LOG10E); </script> |
Output:
0.4342944819032518
Supported Browsers:
- Google Chrome 1 and above
- Edge 12 and above
- Internet Explorer 3 and above
- Firefox 1 and above
- Opera 3 and above
- Safari 1 and above