It might be a dumb question, today I was playing with Firebug,
I typed:
var test = 100011;
console.log(test);
I get out put as 100011
which is correct
But when I type the following code:
var test = 0100011;
console.log(test);
I get 4097
Why am I getting 4097?