Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
function addMonthsToDate(months, date = new Date()) { date.setMonth(date.getMonth() + months); return date; } console.log(addMonthsToDate(6).toDateString()); /* run: "Thu Sep 22 2022" */