Answers for "find how many days between two dates javascript"

5

How do I get the number of days between two dates in JavaScript

let today = new Date().toISOString().slice(0, 10)

const startDate  = '2021-04-15';
const endDate    = today;

const diffInMs   = new Date(endDate) - new Date(startDate)
const diffInDays = diffInMs / (1000 * 60 * 60 * 24);


alert( diffInDays  );
Posted by: Guest on August-07-2021
2

javascript difference between two dates in days

/* difference between date1 and date2 in days (date2 - date1) */
/* date1 and date 2 are already javascript date objects */
function dateDifference(date2, date1) {
    const _MS_PER_DAY = 1000 * 60 * 60 * 24;

    // Discard the time and time-zone information.
    const utc1 = Date.UTC(date1.getFullYear(), date1.getMonth(), date1.getDate());
    const utc2 = Date.UTC(date2.getFullYear(), date2.getMonth(), date2.getDate());

    return Math.floor((utc2 - utc1) / _MS_PER_DAY);
}
Posted by: Guest on July-16-2020
1

calculate days between dates in javascript

let startDate = "2021-04-01";
let date1 = new Date();
let date2 = new Date(startDate);
let timeInMilisec = date1.getTime() - date2.getTime();
let daysBetweenDates = Math.ceil(timeInMilisec / (1000 * 60 * 60 * 24));
Posted by: Guest on May-20-2021

Code answers related to "find how many days between two dates javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language