expression x | Returns the appropriate value if possible otherwise it returns the function with the simplified expression |
var x = nerdamer('lcm(x^2+2*x+1, x^2+6*x+5)');
console.log(x.toString())
var y = nerdamer('lcm(3, 21)');
console.log(y.toString());