I am using backend as Tomcat which gives me timestamp as follows :-
1448966450000 If I use the website to convert this time to datetime it gives me something like below :-
1448966450000 -> Wed, 02 Dec 47885 00:33:20 GMT
But when I use a Filter for AngularJS it gives me something like this:-
{{1448966450000 | date: "MMM dd,yyyy '@' hh:mma"}} -> Dec 01,2015 @ 04:10PM
I am living at India and according to IST the time which I receive with the filter is pretty wrong. I am not able to understand where the problem lies.
NOTE: Date Shown by angular is wrong while the former one is the correct one.