The following will give me years and months:
var years = toDate.diff(todaysDate, 'years');
var months = toDate.diff(todaysDate, 'months');
so if the difference is 2 years and 2 months, I will get:
2
14
Can I use moment to get get the differece in this format?
2 years, 2 months