Answers for "how to show 48 hours in moment js"

1

moment format 23 hour

let dt = moment();
dt.format("HH:mm") // 24 hour time
dt.format("hh:mm a") // 12 hour time (with am/pm)
Posted by: Guest on May-30-2021
4

moment set hours

const date = moment()

date.set({ 
  hour:0,
  minute:0,
  second:0,
  millisecond:0
})
Posted by: Guest on August-18-2021

Code answers related to "how to show 48 hours in moment js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language