Here you can find the source of getDecimalgetDecimal()
Number.prototype.getDecimal = function getDecimal() { return parseInt(this, 10); };
var num = 5; Number.prototype.float = function(){ return this.toFixed(2); Number.prototype.int = function(){ return parseInt(this) ; console.log(num.float()); console.log(num); ...
Number.prototype.floatMethod = function() { return parseFloat(this).toFixed(2); }; function convert_float() { var n = 60.00; console.log(n.floatMethod()); convert_float(n);
Number.prototype.frac = function() { return this - Math.floor(this); };
Number.prototype.fuzzyEqual = function(otherNumber) return Math.abs(this - otherNumber) <= 0.00001;
Number.prototype.gcd = function(b) { return (b == 0) ? this : this.gcd(this % b);
Number.getDisplayText = function(number) { if (number < 1000) { return number; if (number < 1000000) { return (number / 1000).toFixed(1) * 1 + "k"; return (number / 1000000).toFixed(1) * 1 + "m"; }; ...
Number.prototype.getHashCode = function () { var x = this; x = ((x >> 16) ^ x) * 0x45d9f3b; x = ((x >> 16) ^ x) * 0x45d9f3b; x = ((x >> 16) ^ x); return x; };
Number.prototype.getHisByMs=function(){ var ms=this; var date=new Date(ms); var his=[]; his.push(Number(date.getHours()).addZero()); his.push(Number(date.getMinutes()).addZero()); his.push(Number(date.getSeconds()).addZero()); return his;
Number.prototype.getPrecision = function getPrecision(length) { var value = parseFloat(this); if (Number.isFloat(value)) { return value.toString().split(".")[1].length; return 0; };