console.log(new Number("987654321.98").toFixed(9));
The above line is returning "987654321.980000019" but I am expecting "987654321.980000000"
console.log(new Number("987654321.98").toFixed(9));
The above line is returning "987654321.980000019" but I am expecting "987654321.980000000"