JavaScript log() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript log() Method

❮ JavaScript Math Object

Example

Return the natural logarithm of the number "2":

Math.log(2);
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The log() method returns the natural logarithm (base E) of a number.

Note: If the parameter x is negative, NaN is returned.

Note: If the parameter x is 0, -Infinity is returned.


Browser Support

Method
log() Yes Yes Yes Yes Yes

Syntax

Math.log(x)

Parameter Values

Parameter Description
x Required. A number


Technical Details

Return Value: A Number, representing the natural logarithm of a specified number
JavaScript Version: ECMAScript 1

More Examples

Example

Use the log() method on different numbers:

var a = Math.log(2.7183);
var b = Math.log(2);
var c = Math.log(1);
var d = Math.log(0);
var e = Math.log(-1);
Try it Yourself »

❮ JavaScript Math Object