Back to functions

exp


exp

Maps directly to Math.exp(x) if numeric.

Usage: nerdamer("exp(x)")


Parameters

expression x Returns the appropriate value if possible otherwise it returns the function with the simplified expression

Returns

Expression

EXAMPLES:
var x = nerdamer('exp(1)').evaluate();
console.log(x.text());
OUTPUT:
Back to functions