totn JavaScript

JavaScript: Math log10() function

This JavaScript tutorial explains how to use the math function called log10() with syntax and examples.

Description

In JavaScript, log10() is a function that is used to return the base-10 logarithm of a number. Because the log10() function is a static function of the Math object, it must be invoked through the placeholder object called Math.

Syntax

In JavaScript, the syntax for the log10() function is:

Math.log10(number);

Parameters or Arguments

number
The number to use in the calculation. It must be a value that is greater than 0.

Returns

The log10() function returns the base-10 logarithm of a number.

If the number is 0, the log10() function will return -Infinity.

If the number is a negative value, the log10() function will return NaN.

Note

  • Math is a placeholder object that contains mathematical functions and constants of which log10() is one of these functions.

Example

Let's take a look at an example of how to use the log10() function in JavaScript.

For example:

console.log(Math.log10(1));
console.log(Math.log10(2.5));
console.log(Math.log10(0));
console.log(Math.log10(-4));

In this example, we have invoked the log10() function using the Math class.

We have written the output of the log10() function to the web browser console log, for demonstration purposes, to show what the log10() function returns.

The following will be output to the web browser console log:

0
0.3979400086720376
-Infinity
NaN

In this example, the first output to the console log returned 0 which is the base-10 logarithm of 1.

The second output to the console log returned 0.3979400086720376 which is the base-10 logarithm of 2.5.

The second output to the console log returned -Infinity since the number provided was 0.

The second output to the console log returned NaN since the number provided was a negative value.