Answers for "calculate months weeks and days given days in 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 date 3 months ago

var d = new Date();
d.setMonth(d.getMonth() - 3);
Posted by: Guest on May-04-2020

Code answers related to "calculate months weeks and days given days in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language