user18729403
user18729403

Reputation:

How to format fetched date in reactJS

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

Answers (1)

Rush Buket
Rush Buket

Reputation: 90

new Date(date).toLocaleDateString('en-GB');

enter image description here

Upvotes: 3

Related Questions