Here's the scenario: I'm getting .9999999999999999 when I should be getting 1.0.
I can afford to lose a decimal place of precision, so I'm using .toFixed(15), which kind of works.
The rounding works, ...
I am trying to modify an existing line of javascript that i use often to format dollar amount entries in form fields so that the cents are displayed, even if not ...