When I am adding two textbox values that are 1.001 and 0.001 and then I do a parseFloat I get 1.0019999999. I wan
parseFloat
If you want to a quick fix you can round to the nearest thousandth
Math.round((1.001+0.001)*1000)/1000