Reputation:
Hi I have fetched date/data but it showing like that "2022-05-14T14:00:00.000Z". How to convert this to 14/05/2022?
<FetchedDate> {date} </FetchedDate>
Thank you for anyone help.
Upvotes: 0
Views: 136
Reputation: 90
new Date(date).toLocaleDateString('en-GB');
Upvotes: 3