expression x | Returns the appropriate value if possible otherwise it returns the function with the simplified expression |
var r = nerdamer('sec(pi)');
console.log(r.toString());
var t = nerdamer('sec(x)')
console.log(t.toString());
var u = nerdamer('sec(pi/4)')
console.log(u.toString());
var v = nerdamer('sec(pi/2)')
console.log(v.toString());