Hello, I have a question regarding toFixed() function. If I have a float e.g. - 3.123123423 and 0. How can I output it to input box with toFixed(2) so the inputbox values would be 3.12 and 0. I mean if the value is integer I want output it without trailing .00 :)
|
|
|
|
|
|
|
As there is no difference between integers and floats in JavaScript, here is my quick'n'dirty approach:
Or something generic:
|
|||
|
|
|
|
|||
|
|
|
|
You don't need Math.round():
|
||||||||
|
|
|
Results may vary in case of other browsers. So please see this link How to write a prototype for Number.toFixed in JavaScript? |
||
|
|
|
|
Note that toFixed() is broken in IE and generally not to be relied on. Annoying but accurately-rounded replacement functions given there. |
||
|
|
