JSFiddle - React, Tailwind, and code Playground
JavaScript
var num1 = 249.025;
var num2 = 294.025;
console.log("toFixed(2): 249.025: " + num1.toFixed(2));
console.log("toFixed(2): 294.025: " + num2.toFixed(2));
console.log("Math.round(): 249.025: " + Math.round((num1 + Number.EPSILON) * 100) / 100);
console.log("Math.round(): 294.025: " + Math.round((num2 + Number.EPSILON) * 100) / 100);