Hour difference between two times(HH:MM:SS a)in momentjs

后端 未结 11 2414
温柔的废话
温柔的废话 2020-12-03 03:02

I have two time without date

var startTime=\"12:16:59 am\";
var endTime=\"06:12:07 pm\";

I want to show the total hours in between the abov

11条回答
  •  自闭症患者
    2020-12-03 03:29

    var startTime = moment("12:16:59 am", 'hh:mm:ss a');
    var endTime = moment("06:12:07 pm", 'hh:mm:ss a');
    
    endTime.diff(startTime, 'hours');
    

提交回复
热议问题