Answers for "javascript add 3 months to date"

0

javascript after 2 months date find

var newDate = new Date(date.setMonth(date.getMonth()+8));

var jan312009 = new Date(2009, 0, 31);
var eightMonthsFromJan312009  = jan312009.setMonth(jan312009.getMonth()+8);
//$uj@y
Posted by: Guest on October-14-2020
1

add one month to date javascript

// d - is a moment() call
addOneMonth: function (d) {
    let fm = moment(d).add(1, 'M');
    let fmEnd = moment(fm).endOf('month');
    return d.date() != fm.date() && fm.isSame(fmEnd.format('YYYY-MM-DD')) ? fm.add(1, 'd') : fm;
};
Posted by: Guest on June-22-2021

Code answers related to "javascript add 3 months to date"

Code answers related to "Javascript"

Browse Popular Code Answers by Language