input format can be, hh:mm OR hh OR hh:mm:ss OR hh:mm A/hh A/hh:mm:ss how it can be formatted on same inline as “hh:mm:ss A” format.
How can we format using moment js. Or its not feasible input for moment js time formatting.
Advertisement
Answer
It is possible with the Format method
JavaScript
x
7
1
import moment from "moment";
2
3
let date = new Date();
4
let time = date.getTime();
5
6
moment(time).format("hh:mm:ss A");
7