I have the following datetime:
2015-03-04T00:00:39+00:00
I am trying to display the date as follows using AngularJS
{{entry.entryDate | date:'MM/dd'}}
However, when I do this, it displays 03/03 instead of 03/04.
The date displays correctly for any time before 1900. But when a datetime is 1900 or later, it always displays 03/03 instead of 03/04.
Any idea how I can fix this?