आप मिलीसेकंड में अंतर प्राप्त करने के लिए दिनांक वस्तुओं पर getTime() का उपयोग कर सकते हैं और फिर अंतर को 1000 से विभाजित कर सकते हैं;
उदा.
now = new Date();
current_date = new Date(now.getUTCFullYear(), now.getUTCMonth(), now.getUTCDate(), now.getUTCHours(), now.getUTCMinutes(), now.getUTCSeconds());
end_date = obj.end_date (Mon, 02 Apr 2012 20:16:35 GMT);
var millisDiff = end_date.getTime() - current_date.getTime();
console.log(millisDiff / 1000);