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
When you write console.log(00), the argument 00 is interpreted as number and so 0 is printed. On the other hand if you write console.log("00") 00 is interpreted as a string and 00 is printed.