Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

javascript bigdecimal

class BigDecimal {
    // Configuration: constants
    static DECIMALS = 18; // number of decimals on all instances
    static ROUNDED = true; // numbers are truncated (false) or rounded (true)
    static SHIFT = BigInt("1" + "0".repeat(BigDecimal.DECIMALS)); // derived constant
    constructor(value) {
        if (value instanceof BigDecimal) return value;
        let [ints, decis] = String(value).split(".").concat("");
        this._n = BigInt(ints + decis.padEnd(BigDecimal.DECIMALS, "0")
                                     .slice(0, BigDecimal.DECIMALS)) 
                  + BigInt(BigDecimal.ROUNDED && decis[BigDecimal.DECIMALS] >= "5");
    }
    static fromBigInt(bigint) {
        return Object.assign(Object.create(BigDecimal.prototype), { _n: bigint });
    }
    add(num) {
        return BigDecimal.fromBigInt(this._n + new BigDecimal(num)._n);
    }
    subtract(num) {
        return BigDecimal.fromBigInt(this._n - new BigDecimal(num)._n);
    }
    static _divRound(dividend, divisor) {
        return BigDecimal.fromBigInt(dividend / divisor 
            + (BigDecimal.ROUNDED ? dividend  * 2n / divisor % 2n : 0n));
    }
    multiply(num) {
        return BigDecimal._divRound(this._n * new BigDecimal(num)._n, BigDecimal.SHIFT);
    }
    divide(num) {
        return BigDecimal._divRound(this._n * BigDecimal.SHIFT, new BigDecimal(num)._n);
    }
    toString() {
        const s = this._n.toString().padStart(BigDecimal.DECIMALS+1, "0");
        return s.slice(0, -BigDecimal.DECIMALS) + "." + s.slice(-BigDecimal.DECIMALS)
                .replace(/.?0+$/, "");
    }
}

// Demo
var a = new BigDecimal("123456789123456789876");
var b = a.divide("10000000000000000000");
var c = b.add("9.000000000000000004");
console.log(b.toString());
console.log(c.toString());
console.log(+c); // loss of precision when converting to number
Comment

PREVIOUS NEXT
Code Example
Javascript :: top bar in react js 
Javascript :: java.lang.UnsupportedOperationException: JsonObject 
Javascript :: update password before saving to mongodb 
Javascript :: change the focus to next in angular forms 
Javascript :: sum all odd in binary search tree recursion javascript 
Javascript :: define conastant js 
Javascript :: Is Even 
Javascript :: js access sql database on server 
Javascript :: nextjs use dotnenv 
Javascript :: url 
Javascript :: js multi section listbox 
Javascript :: javaScript Age in Dog years //write a function that takes your age and returns it to you in dog years - they say that 1 human year is equal to seven dog years function dog Years() javaScript 
Javascript :: negative indexing in arrays javascript 
Python :: minecraft 
Python :: shebang for python linux 
Python :: tkinter always on top 
Python :: open firefox python 
Python :: dataframe to csv without ids 
Python :: print bold python 
Python :: XLRDError: Excel xlsx file; not supported 
Python :: scipy version check 
Python :: enumerate zip python 
Python :: get stats from array 
Python :: sort tuple by first element python 
Python :: continue reading lines until there is no more input python 
Python :: how to check the django version on a mac 
Python :: pycache in gitignore 
Python :: get mouse click coordinates python turtle 
Python :: how to check if python has been added to path 
Python :: python read string between two substrings 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =