Contact: aviboots(AT)netvision.net.il
39,887 questions
51,814 answers
573 users
function addMonthsToDate(months, date = new Date()) { date.setMonth(date.getMonth() + months); return date; } const date = new Date('2022-03-17'); console.log(addMonthsToDate(8, date).toDateString()); /* run: Thu Nov 17 2022 */