Attempting to organize my data using the ng-repeat option below:
ng-repeat="date in dateList | orderBy:'dateObject':false"
Each dateObject holds a Date object corresponding to the date.
Initially, the output appears correct:
22-03-2017
23-03-2017
24-03-2017
Etc.
However, when I add dates from the following month, strange ordering occurs:
01-04-2017
02-04-2017
03-04-2017
04-04-2017
22-03-2017
23-03-2017
Etc.
It perplexes me why the sorting is inconsistent between months and days...