Exponential(exp)

Creates a exponential operation on the given expressions.

For example, to create e^4:

four = new Number(4);
exp = new Exponential(four);

You also can use variables or arbitrary expressions:

x = new Variable('x');
exp = new Exponential(x);
exp = new Exponential(x + four);

Source

Exponential(exp): super._unary("exp", exp);