Я думаю, что самый простой способ получить метку времени Unix (это время в секундах с 01.01.1970) это следующим образом:
var myDate = new Date("Sun, 27 Mar 2011 20:17:21 +0100");
console.log(+myDate); // +myDateObject give you the unix from that date
console.log(+myDate + 60); // if you want to add seconds for example, you just sum the seconds that you want to add, since myDate is the time in seconds