You can use Moment.js library to format the date into the desired format. First, install Moment.js using npm:
npm install moment --save
Then import and use the format() method to format the date:
index.ts213 chars6 lines
Explanation of the format string used:
MMMM
: full month nameDD
: day of the month (with leading zero if less than 10)YYYY
: full yearhh
: hour in 12-hour format (with leading zero if less than 10)mm
: minute (with leading zero if less than 10)ss
: second (with leading zero if less than 10)SSS
: milliseconds (with leading zeroes if less than 100)A
: AM or PMz
: time zone abbreviation (e.g. UTC, EST, etc.)gistlibby LogSnag