how to shorten year to yr using moment code example
Example 1: moment date add
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 2: momentjs utcoffset
moment().utcOffset() // will output 60 (for example)
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
moment().utcOffset() // will output 60 (for example)