i have date format getting from server in the following way,
"tranDate":"2015-11-29T18:30:00.000Z"
I tried to displaying the date in the view like this, but the date is showing - 30/11/2015(i.e it should be 29/11/2015).
<td>{{stmt.tranDate | date:'dd/MM/yyyy'}}</td>
what could be the problem?