Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

JavaScript Math LN10 Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The Math.LN10 is a property in JavaScript which is simply used to find the value of a natural log of 10. The natural log is of base e which is represented as ln. So, the natural log of 10 is represented as ln(10) whose value is approximately 2.302

Syntax:

Math.LN10;

Return Values: It simply returns the Value of the natural log of 2. The below example illustrates the Math LN10 property in JavaScript.

Example: Here simply the Value of a natural log of 2 i.e, Math.LN10 is shown as output.

Input : Math.LN10
Output : 2.302585092994046

Example: Below is an example of the Math.LN10 Property.

javascript




<script>
    // Here value of Math.LN10 is printed.
    console.log(Math.LN10);                   
</script>

Output:

2.302585092994046

Example: The value of the natural log of 2 can be printed in the form of a function as shown below. 

javascript




<script>
    // function is being called.
    function get_Value_of_natural_log_of_10()
    {
        return Math.LN10;
    }
     
    // Calling Function.
    console.log(get_Value_of_natural_log_of_10());
</script>

Output:

2.302585092994046

Example: Here we consider Math.LN10 is a function but in actuality, it is a property which is why the error as output is being shown. 

javascript




<script>
    // Here we consider Math.LN10 as a
    // function but in actual it
    // is a property that is why error as
    // output is being shown.
    console.log(Math.LN10(12));       
</script>

Output:

Error: Math.LN10 is not a function

Note: Check the console for errors. 

We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article.

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

My Personal Notes arrow_drop_up
Last Updated : 13 Feb, 2023
Like Article
Save Article
Similar Reads
Related Tutorials