To get the date in the format of 23/01, you can use the toLocaleDateString() method of the Date object in JavaScript.
index.ts164 chars4 linesAlternatively, you can also use a library like moment.js to format the date.
index.ts152 chars6 lines
Both methods will give you the date in the desired format.
gistlibby LogSnag