Possible Duplicate:
Workarounds for JavaScript parseInt octal bug
It seems as though leading zeroes should just be ignored when parsing for an Int. What is the rationale behind this?
It seems as though leading zeroes should just be ignored when parsing for an Int. What is the rationale behind this? |
|||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Because it is parsed as an octal number, and not decimal. From MDC:
To force it to parse as Decimal, just supply 10 as your second argument (base).
|
|||||||
|
|
It is parsed as octal number, you need to specify base too:
Quoting:
|
||||
|
|