Answers for "calculate the time difference between two times in hours and minutes in jquery"

8

javascript get hours difference between two dates

// date1 and date2 are date objects

let hours = Math.abs(date1 - date2) / 36e5;

// The subtraction returns the difference between the two dates in milliseconds.
// 36e5 is the scientific notation for 60*60*1000, dividing by which converts
// the milliseconds difference into hours.
Posted by: Guest on January-12-2021
1

jquery calculate datetime difference

// will return number of days
function calculateDT() {
            var oneD = 1000 * 60 * 60 * 24;
            var startDT = ($("#ETDsdt").val());
            var endDT = ($("#ETDedt").val());
            var sMS = new Date(startDT);
            var eMS = new Date(endDT);
            return Math.round((eMS.getTime() - sMS.getTime()) / oneD);
        }
Posted by: Guest on January-05-2022

Code answers related to "calculate the time difference between two times in hours and minutes in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language