How to convert an integer to a string for a single number as well as for multiple number in an array?
How to convert an integer to a string for a single number as well as for multiple number in an array? Example: 1var x1 = 001; Example: 2var x2 = [001,002,003,004,005];How to convert x1 to '001' and x2 to ['001','002','003','004','005']

