Help me with my Date issues

Using Node.JS and MS SQL Server.

Please tell me why my dates are wrong, and how to fix them.
Here it is in my database server

image

Here it is in the dev tools:

image

And in the browser:

In my settings for my database connection, I have my timezone setting set for “Driver Dependent”

In my Server Action settings, I have Timezone set for “Use OS”

Why is it sending over timezone data? I have tried to format it like:

SalesDate.replace('Z','').formatDate('MM/dd/yyyy')

But it does not ignore the timezone. I just need it to display what is in my database and not modify it!

Hello, maybe this can clarify something?

Yes, thanks Franse. I have read that before. In my experience, if I format the date time and add .replace(‘z’,’’) it will strip out the timezone data and display it as it comes over. However, there is no timezone flag in that datetime value. So why is it changing it? It should not know what to change it to if there is not a timezone flag in there.