Convert HH:MM:SS to seconds in momentjs

后端 未结 3 696
伪装坚强ぢ
伪装坚强ぢ 2021-02-04 02:38

I have a string with 12 hour formatted time only

var time=\"12:10:12: PM\"

I want to convert this string to seconds.

how can

相关标签:
3条回答
  • 2021-02-04 03:26

    I was just trying to achieve the same thing. using https://momentjs.com/

    This is how I got what I wanted (03:11:23 => 11483 seconds)

    myVar = moment.duration(myVar).asSeconds()
    
    0 讨论(0)
  • 2021-02-04 03:27

    Try something like this:

    moment('12:10:12: PM', 'HH:mm:ss: A').diff(moment().startOf('day'), 'seconds');
    

    returns 43812

    0 讨论(0)
  • 2021-02-04 03:36

    For mm:ss to seconds

    myVar = moment.duration(`00:${'02:00'}`).asSeconds()//mm:ss to seconds
    
    0 讨论(0)
提交回复
热议问题