Contact: aviboots(AT)netvision.net.il
41,433 questions
53,980 answers
573 users
function addMonthsToDate(months, date = new Date()) { date.setMonth(date.getMonth() + months); return date; } const date = new Date('2022-02-17'); console.log(addMonthsToDate(6, date).toDateString()); /* run: "Wed Aug 17 2022" */