Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calculate time difference between two times javascript

i've looking around how to do this and i found a lot of examples with complicated code. Im using this:

var time1 = new Date();
var time1ms= time1.getTime(time1); //i get the time in ms  

then i do this in other part of the code

var time2 = new Date();
var time2ms= time2.getTime(time2); 

and finnally:

var difference= time2ms-time1ms;
var lapse=new Date(difference);  
label.text(lapse.getHours()+':'+lapse.getMinutes()+':'+lapse.getSeconds());

This works great, except for one issue, the hours it gaves me are always +1 so i have to add to the code (time.getHours()-1) otherwise it gaves me one hour more....

I think is an easier way to do it than all the other examples around... but i still dont understand why i need to add '-1' in order to have the correct lapse.

THanks!!!

like image 794
pistoleta Avatar asked Apr 24 '13 09:04

pistoleta


1 Answers

The problem is your timezone.

When you do new Date(difference), you're creating a Date object that represent the moment exatcly difference milliseconds after January 1st, 1970. When you do lapse.getHours() your timezone is used in the computation. You cannot modify your timezone via Javascript, and cannot modify this behaviour. Not without some heavy Javascript tricks.

But your difference does not represent a date, but a difference of dates. Treat is as such, and compute the hours, minutes and seconds like this:

var hours = Math.floor(difference / 36e5),
    minutes = Math.floor(difference % 36e5 / 60000),
    seconds = Math.floor(difference % 60000 / 1000);

Alternatively, you can take your timezone into account when creating lapse:

var lapse = new Date(difference + new Date().getTimezoneOffset() * 1000);

but I wouldn't recommend this: Date objects are overkill for your purposes.

like image 117
MaxArt Avatar answered Oct 13 '22 11:10

MaxArt