I have a date string which looks like :
const date = "23/03/2022"
and I am trying to convert into the
Tue Mar 23 2022 00:00:00 GMT+0530 (India Standard Time)
I tried using new Date(date)
not able to do it .
can any one help me with this ?
I have a date string which looks like :
const date = "23/03/2022"
and I am trying to convert into the
Tue Mar 23 2022 00:00:00 GMT+0530 (India Standard Time)
I tried using new Date(date)
not able to do it .
can any one help me with this ?