Normally we can easily convert a number string using toString() method or concat '' with it.
But when number with leading zero like 01010 I can't convert it to plain string like (01010).toString()
Also how can I convert it to string?
Number is 01010 expected output '01010'
How to convert leading zero number to array in JavaScript?
Number is 01010 expected output [0,1,0,1,0]