moment js add two hours code example
Example 1: moment js add day
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
Example 2: moment duratuion from hours
var k = moment.duration(12, 'hours');
var new_date = moment(startdate, "DD-MM-YYYY").add(5, 'days');
var k = moment.duration(12, 'hours');