how I should avoid decimal rounding in javascript suppose I have input like
input : 99999999999.999999
Expected output : 99999999999.999999
but i am getting output like
100000000000
here, internally javascript rounding the decimal place. please let me know how should I avoid this javascript rounding???.
For example:
var test = 99999999999.999999;
console.log(test); //This will print 100000000000 instead