Log(Expression base, Expression arg)

Creates a logarithm function with given base and argument.

For example, to create log_10(2):

base = new Number(10);
arg = new Number(2);
log = new Log(base, arg);

To create a naturally based logarithm, see Ln.

Source

Log(Expression base, Expression arg): super._binary("log", base, arg);