How to set time with date in momentjs

后端 未结 5 2022
失恋的感觉
失恋的感觉 2021-02-02 05:19

Does momentjs provide any option to set time with particular time ?

5条回答
  •  盖世英雄少女心
    2021-02-02 05:55

    var timeAndDate = moment(date).add(moment.duration(time))
    

    When you have separated string for date and time you can parse first as date and second as duration and just add them. This should create moment with proper date and time

提交回复
热议问题