I'm trying to add x amount of months to current date in angular2 but i'm find difficulty in doing it, i'm able to get the current date formatted in a way i want but its left with adding the x amount of number to the current month.
JS
this.send_date=new Date();
this.formattedDate=new Date().toISOString().slice(0,10);
console.log(this.formattedDate);
For example if i had 5 months to the current month, the date should change to 2018-04-09
