When I try to convert a user inputted date such as 05/13/1978
I want to send the date in ISO format to the server as that is what the back end accepts.
new Date('05/13/1978);
Outputs:
Sat May 13 1978 00:00:00 GMT+0100 (British Summer Time)
Which is expected but to convert to ISO date for the POST
to the server I need to call .toISOString()
which outputs:
1978-05-12T23:00:00.000Z
Why does the user input revert to the 12th May 1978 at 23:00?
If that is stored in the database when a user GET
a response with that value will it output 05/13/1978
or 05/12/1978
in the browser?