Why do console.log(00); and console.log(01); print 0 & 1 in the browser console and not 00 & 01?
console.log(00);
console.log(01);
console.log(00); // prints
Cause console.log always shows in DEC format. For example: 011 is 11 in OCT, and 9 in DEC.