List of utility methods to do Number Calculate
function foo(a, b) { var result = a + b; if (result) return (a + b) + result + this; else return this.f; noInline(foo); var x; ...
Number.prototype.with_sign = function(){ return ( this > 0 ) ? "+"+this : this.toString();