moment 1 hour ago code example
Example 1: moment hour minute
moment().format('HH:mm:ss')
Example 2: 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)
moment().format('HH:mm:ss')
let dt = moment();
dt.format("HH:mm") // 24 hour time
dt.format("hh:mm a") // 12 hour time (with am/pm)