Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy

VBScript Log function


May 13, 2021 VBScript


Table of contents


VBScript Log function


VBScript Log function Complete VBScript reference manual

The Log function returns the natural log of the specified number. The natural number is a pair of numbers based on e.

Note: Negative values are not allowed.

Tip: See Exp function.

Grammar

Log(number)

parameter describe
number Required.More than 0 effective numerical expressions.
<script type="text/vbscript">

document.write(Log(38.256783227))

</script>

The above example output results:

3.64432088381777

Try it out . . .

VBScript Log function Complete VBScript reference manual