edu
Member since Aug 21, 2009
- Profile: /members/4150-edu.htm
- Comments: 1
Recent Blog Comments By edu
-
Javascript Number.toFixed() Method
Posted on Aug 21, 2009 at 4:07 PM
What happens with this number 123456789012345.1 Example: ---------------------- a="123456789012345.1" n = parseFloat(a); s = n.toFixed(2); ---------------------- The result of s is: 123456789012345.09 it is wrong? why?... read more »