Why do 37291+05472 and 37291+5472 give different output?
37291+05472
37291+5472
console.log(37291+05472)
console.log(37291+5472)
Starting a number with 0 declares that is an octal (base 8) and not a decimal (base 10).
0