I'm facing an issue with timestamps. Let me explain - I have a timestamp coded as 1378028575
, which corresponds to Sun, 01 Sep 2013 09:42:55 GMT
according to this website. The problem arises when I attempt to format this timestamp using Angular's date
function. Instead of displaying the expected date and time, it returns Jan 17, 1970 2:47:08 AM
when using this format: {{'1378028575' | date:'medium'}}
. It seems like there is a discrepancy between the actual timestamp value and how Angular interprets it. Any insights on why this might be happening or what I could be doing incorrectly?