While executing some random expressions in console, I just found that
010 + ""
returning 8
(even 011,0100.. are returning results by considering octal number system)
What would I have to do if I want to convert a number 010
to a string "010"
? Not only for 010
but for every similar numbers. I managed to find a kind of similar explanation for this here. But that is not explaining how to convert it into a exact string version.