Exp

From NSB App Studio
Revision as of 17:36, 24 March 2019 by Ghenne (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

Exp(number)

Description

Exp returns a double-precision value equal to enumber. The required parameter, number, is any numeric expression. e is the base of natural logarithms, and is approximately equal to 2.718282.

Example (Basic)

Rem Exp Example
'Exp raises a number to the eth power
Print "Exp(0) = " & Exp(0)
Print "e = " & Exp(1)

Output

Exp(0) = 1
e = 2.718282

Related Items

Log