aVC
aVC

Reputation: 2344

Javascript Date to UTC time stamp

I have UTC: 1325271847. On this I use javascript to convert it to Fri Dec 30 2011 14:04:07 GMT-0500 (Eastern Standard Time). I want to convert it back to UTC format. ie 1325253847.

Upvotes: 2

Views: 2706

Answers (1)

Bakudan
Bakudan

Reputation: 19492

document.write(new Date("Fri Dec 30 2011 14:04:07 GMT-0500 (Eastern Standard Time)").getTime()/1000 + " seconds since 1970/01/01");

Upvotes: 2

Related Questions