I am using moment library and from front end I am getting time in HH:mm I need to add hours and minutes to current time using moment.
HH:mm
Suppose I am getting <
Moment have .add property
.add
moment().add(1, 'day')
Reference: http://momentjs.com/docs/#/manipulating/add/
For converting to specific format:
moment().add({hours:5, minutes: 30}).format('HH:mm')