How To Increase Date by Months in Javascript

Increase Date by Months in Javascript:

var nextYear =  new Date(); // today's day
nextYear.setMonth(nextYear.getMonth() +12 ); // 12 months from now