JavaScript | Math.LOG10E property
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;
- Here nothing is as parameter because Math.LOG10E is not a function but it is a property.
- It simply return the value of base 10 logarithm of e.
Parameters:
Return Values:
Example:
Input: Math.LOG10E Output: 0.4342944819032518
Explanation:
Here simply value of base 10 logarithm of e is shown as ouput.
Let’s see JavaScript code for Math.LOG10E property:
Code #1:
// Here value of Math.LOG10E is printed. console.log(Math.LOG10E); |
Output:
> 0.4342944819032518
Code #2:
Value of base 10 logarithm of e can be printed as in the form of function as shown below.
// function is being called. function get_Value_of_base_10_lagarithm_of_e() { return Math.LOG10E; } // function is calling. console.log(get_Value_of_base_10_lagarithm_of_e()); |
Output:
> 0.4342944819032518
Errors and Exceptions:
- Here we consider Math.LOG10E as a function but in actual it is a property that is why error as output is being shown.
// Here we consider Math.LOG10E as a function but in actual it// is a property that is why error as output is being shown.console.log(Math.LOG10E(12));chevron_rightfilter_noneOutput:
Error: Math.LOG10E is not a function
- Whenever we need to find the value of base 10 logarithm of e that time we take the help of this property.In mathemaatics it needed a lot.
Let’s see JavaScript program on this application:// Value of Math.LOG10E is printed.console.log(Math.LOG10E);chevron_rightfilter_noneOutput:
> 0.4342944819032518
Application:
Recommended Posts:
- How to remove CSS property using JavaScript?
- Javascript | MouseEvent which Property
- JavaScript | Error name Property
- JavaScript | Math.PI Property
- JavaScript | lastIndex Property
- JavaScript | global Property
- JavaScript | source Property
- JavaScript | Cursor property
- JavaScript | multiline Property
- JavaScript | undefined Property
- JavaScript | Infinity Property
- JavaScript | Math.LN2 property
- JavaScript | RegExp ignoreCase Property
- JavaScript | symbol.description property
- How to remove a property from JavaScript object ?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Improved By : Pallavi Yadav



