How to set time with date in momentjs

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

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

5条回答
  •  礼貌的吻别
    2021-02-02 05:55

    Just incase anyone is wondering how to set the time on a Date Object, here's how I did it:

    const dateObj = new Date();
    
    const dateStr = dateObj.toISOString().split('T').shift();
    const timeStr = '03:45';
    
    const timeAndDate = moment(dateStr + ' ' + timeStr).toDate();
    

提交回复
热议问题