I have an UTC date in milliseconds which I am passing to Angular\'s date filter for human formatting.
{{someDate | date:\'d MMMM yyyy\'}}
A
If you do use moment.js you would use the moment().utc() function to convert a moment object to UTC. You can also handle a nice format inside the controller instead of the view by using the moment().format() function. For example:
moment(myDate).utc().format('MM/DD/YYYY')