I've made something like :
Number.prototype.foo = function () {
//code
}
// Octal number!
(013).foo();
But inspecting this inside of foo function, I get 11 as value... What's wrong?
|
I've made something like :
But inspecting this inside of foo function, I get 11 as value... What's wrong? |
||||
|
|
|
What did you expect to happen? Javascript treats all whole numbers that start with a zero as octal[*] so the actual value of [*] There's an exception for whole numbers containing the digits 8 or 9 - since those aren't legal in octal the parser will implicitly treat them as decimal even in the presence of a leading zero. |
|||
|
An octal number is no different from a decimal number once it's been interpreted as a number.
|
|||
|
|
|
This isn't really a problem as you can convert it back to an octal representation easily:
Numbers are returned in decimal format, but the numerical operations on it won't be any different as far as I know. Note also that all octal numbers supplied to JavaScript will be immediately "converted" in this fashion:
|
|||
|
|