Possible Duplicate:
Workarounds for JavaScript parseInt octal bug
Surprisingly it returns 0. Why? and what's the (proper) solution to get correct results?
Surprisingly it returns |
|||||
|
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.
|
Use a radix:
Some JavaScript implementations add a third numeral system to the two defined by the standard (decimal, the default; and hex, prefixed with Since By explicitly using a radix, you tell |
||||
|
|
|
"08" mean 8 based number. You should specify second argument.
|
|||
|
|
|
From http://www.bennadel.com/blog/2012-Exploring-Javascript-s-parseInt-And-parseFloat-Functions.htm:
|
|||
|
|
|
From MDC - parseInt:
And the example:
That is, since no radix was passed in and the string begins with Solution? Always provide a radix parameter:
|
|||
|
|
|
If you run it through jslint, it'll squawk at you for not including the radix parameter. Yes, the radix is optional, but probably should be included every time. A number starting with 0 is assumed to be octal unless otherwise specified.
|
|||
|
|
|
Number prefixed with "0" is octal number. |
|||
|
|
|
@T.J. gave a great explanation for the behaviour you see. Another way to parse a number string is to use unary
|
|||
|
|