How can I sort "YearMonth" text using Year & Month?
MyArray = ['2019APR', '2019AUG', '2019DEC', '2019FEB', '2019JAN',
'2019JUL', '2019JUN', '2019MAR', '2019MAY', '2019NOV', '2019OCT',
'2019SEP', '2020APR', '2020AUG', '2020DEC', '2020FEB', '2020JAN',
'2020JUL', '2020JUN', '2020MAR', '2020MAY', '2020NOV', '2020OCT', '2020SEP']
Output Require
['2019JAN', '2019FEB', '2019MAR', '2019APR', '2019MAY', '2019JUN',
'2019JUL', '2019AUG', '2019SEP', '2019OCT', '2019NOV', '2019DEC',
'2020JAN', '2020FEB', '2020MAR', '2020APR', '2020MAY', '2020JUN',
'2020JUL', '2020AUG', '2020SEP', '2020OCT', '2020NOV', '2020DEC']
I know Sort() will sort my array in alphabetical order but any optimal custom sort function for this?
I got Answer two Ans
JS I found myself using this way:- https://jsfiddle.net/51u9nb6c/2/
And for .NET c# I mark correct answer
DateTime.ParseExact("2019MAR", "yyyyMMM", System.Globalization.CultureInfo.InvariantCulture)and sort them directly without a custom comparison function. I don't know if JS supports date parsing like that.return a[1] - b[1] || months[a[0]] - months[b[0]];