Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

marked as duplicate by Felix Kling, jAndy, Wooble, KooiInc, BrunoLM Sep 8 '11 at 22:25

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.

4 Answers

up vote 11 down vote accepted

Because it is parsed as an octal number, and not decimal. From MDC:

  • If the input string begins with "0x" or "0X", radix is 16 (hexadecimal).
  • If the input string begins with "0", radix is eight (octal). This feature is non-standard, and some implementations deliberately do not support it (instead using the radix 10). For this reason always specify a radix when using parseInt.
  • If the input string begins with any other value, the radix is 10 (decimal).

To force it to parse as Decimal, just supply 10 as your second argument (base).

var i = parseInt(012,10);
share|improve this answer
Is there a way to force it to parse as decimal? – T Nguyen Sep 8 '11 at 11:28
To solve it you need to a radix of 10 read more on: developer.mozilla.org/en/JavaScript/Reference/Global_Objects/… – voigtan Sep 8 '11 at 11:29
See my edit, or @Sarfraz's answer – TJHeuvel Sep 8 '11 at 11:35

It is parsed as octal number, you need to specify base too:

parseInt("014", 10)   // 14

Quoting:

  • If the input string begins with "0x" or "0X", radix is 16 (hexadecimal).

  • If the input string begins with "0", radix is eight (octal). This feature is non-standard, and some implementations deliberately do not support it (instead using the radix 10). For this reason always specify a radix when using parseInt.

  • If the input string begins with any other value, the radix is 10 (decimal).


share|improve this answer

Leading zeros make the number octal

share|improve this answer

It's an octal number

8 + 4 == 12

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.