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

VBScript Exp function


May 13, 2021 VBScript


Table of contents


VBScript Exp function

The VBScript Exp function is used to return the power side of e (the bottom of the natural number of numbers), refer to the example in this article.


VBScript Exp function Complete VBScript reference manual

The Exp function returns the power side of e (the bottom of the natural pair).

Note: The value of number cannot exceed 709.782712893.

Tip: See Log function.

Grammar

Exp(number)

parameter describe
number Required.Effective numerical expression.
<script type="text/vbscript">

document.write(Exp(6.7) & "<br />")
document.write(Exp(-6.7))

</script>

The above example output results:

812.405825167543
1.23091190267348E-03

Try it out . . .

VBScript Exp function Complete VBScript reference manual