we created java-script function named “getTheDiffTime” using that function you will be able to fetch the time difference in various format.
javascript get time difference in minutes
01 | function getTheDiffTime(dateone, datetwo,format){ |
03 | if (dateone > datetwo) { |
04 | var seconds = dateone.getTime() - datetwo.getTime(); |
06 | var seconds = datetwo.getTime() - dateone.getTime(); |
08 | var second = 1000, minute = 60 * second, hour = 60 * minute, day = 24 * hour; |
10 | var rformat = Math.floor(seconds / day); |
11 | seconds -= rformat * day; |
13 | } else if (format== "Hours" ){ |
15 | rformat = translate(seconds / hour); |
17 | } else if (format== "Minutes" ){ |
19 | rformat= translate(seconds / minute); |
21 | } else if (format== "Seconds" ){ |
23 | rformat = translate(seconds / second); |
How to use this function here I am giving you the one good example.
I am going to get the current months minutes using this function.
2 | currentMonth = new Date(); |
3 | plus_oneMonth = new Date(); |
4 | plus_oneMonth.setMonth(plus_oneMonth.getMonth()+1); |
6 | getTheDiffTime(plus_oneMonth,currentMonth, "Minutes" ); |
You will get return the minutes.