I am seeking a way to convert an array of strings, which represent dates in the format of 201001 ,201002,
into something more readable like 2010 January, 2010 February. Do you have any suggestions on how to achieve this?
var Array = ["201005", "201006", "201007", "201008", "201009", "201010", "201011", "201012", "201101", "201102", "201103", "201104", "201106", "201107", "201108", "201109", "201110", "201111", "201112", "201201", "201202", "201203", "201204", "201205", "201206", "201207", "201208", "201209", "201210", "201211", "201212", "201301", "201302", "201303", "201304", "201305", "201306", "201307"];
The desired output would be :
var expected = ["2010 january", "2010 February" etc]