How to parseInt "09" into 9 ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
include the radix:
|
|||
|
|
|
This has been driving me nuts - As others have said, the solution is to specify base 10:
There's a good explanation for this behaviour here
|
|||
|
|
|
You can also do:
This returns the integer 9 on IE7, IE8, FF3, FF4, and Chrome 10. |
|||
|
|
|
Re-implement the existing parseInt so that if it is called with one argument then "10" is automatically included as the second argument.
|
|||
|
|
returns 9 here. It is odd.
|
|||||||||||||||||
|