Possible Duplicate:
Workarounds for JavaScript parseInt octal bug
well i have this http://jsfiddle.net/gMDfk/1/ The alert returns 0 The code in jsfiddle works perfect when value is equal to eight or nine.. Wtf is going on here?
well i have this http://jsfiddle.net/gMDfk/1/ The alert returns 0 The code in jsfiddle works perfect when value is equal to eight or nine.. Wtf is going on here?
| |||||||||||
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
add a
which tells JS to treat is as a base-10 number. By default, anything starting with | |||||||||||||||||||
feedback
|
|
Prefixing a number with a 0 means it's interpreted as octal by javascript. Try this:
You can fix it by passing
| |||
|
feedback
|
|
Parseint should use radix parameter: parseint (value, radix). In your case, radix is 10. Otherwise, it will take it as octal. | |||
|
feedback
|