When I tested the code new Date(new Date().setHours(0, 0, 0, 0)) locally, the value is storing like this 2022-06-20T18:30:00.000+00:00, and when I hosted the same in vercel and tried the same and it is storing the date as 2022-05-21T00:00:00.000+00:00.
My requirement is, I want to save the date only in mongodb through node js, for querying and fetching the data based on the date.
How can I store the same date from both localhost and server.