'Transform moment timestamp into different format string
Transform moment timestamp into different format string
Hi everybody, moment is giving me a timestamp like this:
2022-03-24T15:22:02.239Z
And I want to get a string formatted like this:
"May 25, 2022 00:00:00"
Solution 1:[1]
You can run the format
method provided to do this.
For this scenario try
moment().format("MMMM Do, YYYY h:mm:ss a");
See documentation for moment here https://momentjs.com/docs/#/displaying/format/
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |