How could I convert a string "0.0" into a float 0.0? Is there some way? Currently if I do:
parseFloat(0.0)
It returns a number 0.
If I do :
parseFloat("0.0").toFixed(1)
It returns a string "0.0". Is there a way I could get a number type with value 0.0 ?