最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Convert UNIX timestamp difference to minutes - Stack Overflow

programmeradmin1浏览0评论

I have 2 dates, that I convert to UNIX timestamp - start date and confirm date. I subtract one from another and get numbers like these:

-12643, 0, 3037, 1509, -3069

Basically, what I need to do is to get the difference between the two dates in minutes, but I don't know how to convert those to minutes. The end output should be something like: -25, 13, 155

I have 2 dates, that I convert to UNIX timestamp - start date and confirm date. I subtract one from another and get numbers like these:

-12643, 0, 3037, 1509, -3069

Basically, what I need to do is to get the difference between the two dates in minutes, but I don't know how to convert those to minutes. The end output should be something like: -25, 13, 155

Share Improve this question asked Jul 30, 2013 at 20:31 abpetkovabpetkov 9145 gold badges14 silver badges29 bronze badges 1
  • 1 um, i think im missing something. unix timestamps are measured in seconds, by definition. soo minutes is $x/60..? – Owen Beresford Commented Jul 30, 2013 at 20:39
Add a ment  | 

3 Answers 3

Reset to default 1

How did you get the original numbers? I believe the standard Unix timestamps are in seconds, so you should be able to divide by 60 to get minutes. However, Date.now() in JavaScript, for example, returns milliseconds, so you'd need to divide by 60,000.

Given two UNIX timestamps: a, b; you can calculate the difference between them in minutes like this:

var a = 1377005400000; //2013-07-20 15:30
var b = 1377783900000; //2013-07-29 15:45 

var dateA = new Date(a);
var dateB = new Date(b);

var dayRelativeDifference =   dateB.getHours()*60 + dateB.getMinutes()
                            - dateA.getHours()*60 - dateA.getMinutes();
//  dayRelativeDifference will be 15

var absoluteDifference    = (b-a)/60
//  absoluteDifference will be 12975000

Also have a look at http://www.w3schools./jsref/jsref_obj_date.asp

You just need to divide by 60. You already have the difference between the two timestamps, so none of the Date overhead above is necessary:

var diffs = new Array(-12643, 0, 3037, 1509, -3069);
for (var i = 0; i < diffs.length; i++)
    document.write(diffs[i] % 60);
发布评论

评论列表(0)

  1. 暂无评论