Check out this link for more information
I've integrated Moment.js and Angular-moment into my application.
Oddly enough, all my epoch timestamps are being converted to the same date in 1970.
<td class="timespan">{{tag.added_epoch | amDateFormat:'dddd, MMMM Do YYYY'}}</td>
The value of tag.added_epoch
is added_epoch: 1432252800
But when I manually convert it online, I get the correct date:
Any thoughts on why 1432252800
is being transformed into Saturday, January 17th 1970? Let's figure this out together!