Contact: aviboots(AT)netvision.net.il
38,169 questions
49,785 answers
573 users
function addMonthsToDate(months: number, date = new Date()): Date { date.setMonth(date.getMonth() + months); return date; } console.log(addMonthsToDate(6).toDateString()); /* run: "Fri Dec 12 2025" */