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