Add hours minutes with the format hh:mm using moment

前端 未结 5 411
自闭症患者
自闭症患者 2021-01-21 00:55

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.

Suppose I am getting <

5条回答
  •  自闭症患者
    2021-01-21 01:27

    Moment have .add property

    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')
    

提交回复
热议问题