expression x | Returns the appropriate value if possible otherwise it returns the function with the simplified expression |
var x = nerdamer('sqrt(-1)');
console.log(x.toString());
x = nerdamer('sqrt(2)');
console.log(x.toString());
x = nerdamer('sqrt(3/2)');
console.log(x.toString());
x = nerdamer('sqrt(x^2/5)');
console.log(x.toString());