JSFiddle - React, Tailwind, and code Playground
by tmtron
JavaScript
const value = 747.6;
const valFixed = value.toFixed(2);
// toFixed works correctly an converts your number to this string: "747.60"
console.log(valFixed);
const fixedToNum = +valFixed;
// the "+" operator converts the string "747.60" back to a number: 747.6
console.log(fixedToNum);