setUTCMilliseconds を正しく実装していませんか? 入力した値の日付が間違っています。これは、間違った値の一例です。すべてのテスト データは、JS では 5 月 24 日 (今から未来) に解決されますが、C# またはクイック オンライン変換ツールを使用すると、UTS MS は正しいです。
何かご意見は?
function parseDate(epoch) {
var d = new Date();
//tried this too, but it shows me the actual epoch 1970 date instead
//var d = new Date(0);
//EDIT: this should be seconds in combination with Date(0)
d.setUTCMilliseconds(parseInt(epoch));
return d.toString();
}
// 1336423503 -> Should be Mon May 07 2012 13:45:03 GMT-7
// javascript says
Thu May 24 2012 05:03:21 GMT-0700 (Pacific Daylight Time)