# Fixing JavaScript Timezone Issues

DevFeed: [Fixing JavaScript Timezone Issues](<https://devfeed.tech/articles/fixing-javascript-timezone-issues-5276.md>)

Original publisher: [Read original article](<https://neon.com/blog/fixing-javascript-timezone-issues>)

Author: Deepesh Genani

Published: 2025-01-31T17:02:39Z

Content type: tutorial

Language: en

Sources: [Blog -- Neon Docs](<https://devfeed.tech/sources/blog-neon-docs.md>)

Topics: [Database](<https://devfeed.tech/topics/database.md>), [Web Development](<https://devfeed.tech/topics/web-development.md>)

Tags: [api](<https://devfeed.tech/tags/api.md>), [community](<https://devfeed.tech/tags/community.md>), [database](<https://devfeed.tech/tags/database.md>), [javascript](<https://devfeed.tech/tags/javascript.md>), [postgres](<https://devfeed.tech/tags/postgres.md>), [storage](<https://devfeed.tech/tags/storage.md>)

## AI overview

A practical JavaScript timezone bug fix for a parking booking app: send and store a plain date-time string without timezone information so the selected local time is preserved in the database.

## Source excerpt

Working with timezones in JavaScript often feels like navigating a minefield. Recently, I faced a timezone issue when building a parking booking app while handling date storage in our database, something you may also encounter if you're working across timezones. Here's what went...