javascript subtract days from date
var myCurrentDate=new Date();
var myPastDate=new Date(myCurrentDate);
myPastDate.setDate(myPastDate.getDate() - 8);//myPastDate is now 8 days in the past
javascript subtract days from date
var myCurrentDate=new Date();
var myPastDate=new Date(myCurrentDate);
myPastDate.setDate(myPastDate.getDate() - 8);//myPastDate is now 8 days in the past
how to calculate the number of days between two dates in javascript
function javascript (date1, date2) {
let oned = 24 * 60 * 60 * 1000;
return Math.ceil((date2 - date1) / oned);
}
function javascript(date1, date2) {
return new Date(date2 - date1).getDate() - 1
}
function javascript(date1, date2) {
return Math.ceil((date2 - date1) / 8.64e7);
}
js subtract days
var dateOffset = (24*60*60*1000) * 5; //5 days
var myDate = new Date();
myDate.setTime(myDate.getTime() - dateOffset);
javascript subtract years from date
var date = new Date();
date.setDate(date.getDate() + days);
date.setMonth(date.getMonth() + months);
date.setFullYear(date.getFullYear() + years);
console.log((date.getMonth() ) + '/' + (date.getDate()) + '/' + (date.getFullYear()));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us