Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

VBScript Log Function


❮ Complete VBScript Reference

The Log function returns the natural logarithm of a specified number. The natural logarithm is the logarithm to the base e.

Note: Negative values are not allowed.

Tip: Also look at the Exp function.

Syntax

Log(number)

Parameter Description
number Required. A valid numeric expression > 0

Example

Example

<%

response.write(Log(38.256783227))

%>

The output of the code above will be:

3.64432088381777
Show Example »

❮ Complete VBScript Reference