Javascript Number abs()
abs()
Number.prototype.define("abs", function() { return Math.abs(this) })
Number.prototype.abs = function () { return Math.abs(this.valueOf()); }
Number.prototype.abs = function(){ return Math.abs(this); };