I keep encountering an error with the time showing as 12:00 P.M.
When I receive a response in epoch time format 1454092200000, it corresponds to 1/30/2016, 12:00:00 AM GMT+5:30
$scope.shipmentDate = moment(1454092200000).format("YYYY/MM/DD hh:mm");
The issue is that this gets converted to 1/30/2016, 12:00:00
, which displays as 12:00 P.M. Why is this happening?