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