| Author |
parseFloat()
|
Sreejith kayappuram
Ranch Hand
Joined: Jun 24, 2008
Posts: 35
|
|
Hi, i want to parse a long float value. document.write(parseFloat("9999999999999999")); result = > 999999999999999 But if value is document.write(parseFloat("99999999999999999")); result = > 10000000000000000 is there any other way i can parse this long value ?
|
Thanks
Sreejith
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8264
|
|
|
You should be aware that floating-point numbers on computers are approximations, not exact values. This JDC Article has examples to illustrate the problem and a solution in Java.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
 |
|
|
subject: parseFloat()
|
|
|