Decimal.js and JSON.stringify()
An example of how we can configure decimal.js to automatically round to the correct number of decimal places when JSON.stringify()-ed.
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/decimal.js/10.0.0/decimal.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"></script>
JavaScript
let a=-11.7999997
let b=11.8
let total=Decimal.add(a, b).toNumber()
console.log(_.round(total,7))