JSFiddle - React, Tailwind, and code Playground

JavaScript

$(document).ready(function(){
    var str = '10.30';
    var flo = parseFloat(str);
    alert(flo);
    flo = flo.toFixed(2)
    alert(flo);
});