Table of Contents
JavaScript Date
Convert UTC to local time
Example
Convert local time to UTC
in conclusion
Home Web Front-end JS Tutorial How to convert UTC datetime to local datetime using JavaScript?

How to convert UTC datetime to local datetime using JavaScript?

Sep 12, 2023 pm 06:05 PM

如何使用 JavaScript 将 UTC 日期时间转换为本地日期时间?

Time zone handling is an important part of every web application. The time recorded by the backend is usually in UTC format. However, when it is displayed to the user, it must be converted to the user's local time. This can be achieved via JavaScript. In this blog we will see how to convert UTC date time to local date time using JavaScript.

JavaScript Date

JavaScript contains a "Date" class that allows us to work with dates and times. The Date class contains various methods for working with dates and times, including -

Date() - Returns the current date and time in milliseconds getTime() Returns the current time in milliseconds

getUTCFullYear() - Returns the date year in UTC time zone.

getUTCMonth() - Returns the date month in UTC time zone.

getUTCDate() - Returns the month and day of the date in the UTC time zone.

getUTCHours() - Returns the date hour in UTC time zone.

getUTCMinutes() - Returns the date minutes in UTC time zone.

getUTCSeconds() - Returns the seconds of a date in the UTC time zone.

Convert UTC to local time

We have to convert UTC date time to local date time using getTimezoneOffset() method. This method returns the time difference in minutes between UTC and local time. This minute difference can then be used to convert the UTC date-time to a local date-time.

Example

For example, the following code converts UTC datetime to local datetime -

<!DOCTYPE html>
<html>
<body>
   <div id="result"></div>
   <script>
      var utc = new Date();
      var offset = utc.getTimezoneOffset();
      var local = new Date(utc.getTime() + offset * 60000);
      document.getElementById("result").innerHTML = local;
   </script> 
</body>
</html>
Copy after login

We can see here a New Date object named "utc", which saves the current UTC date and time. We then use the getTimezoneOffset() function to calculate the time difference (in minutes) between UTC and local time. Finally, we calculate the local time by adding this quantity to the UTC time in milliseconds.

Similarly, we can convert a specified UTC date time into a local date time. To accomplish the same thing, simply supply the UTC date and time as parameters to the Date() function Object() { [native code] }. Now, let's see the code to convert a UTC date time of "2018-11-12 12:00:00" to a local date time −

Example

<!DOCTYPE html>
<html>
<head>
   <title>Date Example</title>
</head>
<body>
   <div id="result"></div>
   <script>
      var utc = new Date("2018-11-12 12:00:00");
      var offset = utc.getTimezoneOffset();
      var local = new Date(utc.getTime() + offset * 60000);
      document.getElementById("result").innerHTML = "UTC : " + utc + "<br>" + "Local : " + local;
   </script>
</body>
</html>
Copy after login

We have passed the UTC date and time as a string to the Date() constructor. We then convert the UTC datetime to local datetime using the same method as before.

Convert local time to UTC

Now, how can we get from local time to UTC? To convert local date time to UTC date time, we can use the getTimezoneOffset() method once more. Since this function returns the time difference in minutes between UTC and local time . This difference number can be used to convert the local date time to the UTC date time.

Example

For example, the following code converts local datetime to UTC datetime -

<!DOCTYPE html>
<html>
<body>
   <div id="result"></div>
   <script>
      var local = new Date();
      var offset = local.getTimezoneOffset();
      var utc = new Date(local.getTime() - offset * 60000);
      document.getElementById("result").innerHTML = utc;
   </script>
</body>
</html>
Copy after login

In the above code, we first create a new Date object named "local" that contains the current local date and time. We then use the getTimezoneOffset() method to get the time difference in minutes between UTC and local time. After subtracting this value from the local time in milliseconds, we get the UTC time.

We can also convert a specific local date time into a UTC date time by passing the local date and time as arguments to the Date() constructor. For example, the following code will convert a local date time of "2018-11 -12 12:00:00" into the UTC date time −

Example

<!DOCTYPE html>
<html>
<body>
   <div id="result"></div>
   <script>
      var local = new Date("2018-11-12 12:00:00");
      var offset = local.getTimezoneOffset();
      var utc = new Date(local.getTime() - offset * 60000);
      document.getElementById("result").innerHTML = utc;
   </script> 
</body>
</html>
Copy after login

We pass the local date and time as strings to the Date() constructor. We then convert the local datetime to UTC datetime using the same method as before.

in conclusion

In this tutorial, we learned how to convert UTC datetime to local datetime using JavaScript. We also learned that the JavaScript Date class provides various methods for working with dates and times, such as getTimezoneOffset(), which can be used to convert UTC datetime to local datetime. We also learned how to convert local datetime to UTC datetime using the same method in this blog. It is important to note that time zone handling is an important aspect of any web application, and it is also important to convert times correctly so they are displayed correctly to the user.

The above is the detailed content of How to convert UTC datetime to local datetime using JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What should I do if I encounter garbled code printing for front-end thermal paper receipts? What should I do if I encounter garbled code printing for front-end thermal paper receipts? Apr 04, 2025 pm 02:42 PM

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

Who gets paid more Python or JavaScript? Who gets paid more Python or JavaScript? Apr 04, 2025 am 12:09 AM

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

How to achieve parallax scrolling and element animation effects, like Shiseido's official website?
or:
How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? How to achieve parallax scrolling and element animation effects, like Shiseido's official website? or: How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? Apr 04, 2025 pm 05:36 PM

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

The difference in console.log output result: Why are the two calls different? The difference in console.log output result: Why are the two calls different? Apr 04, 2025 pm 05:12 PM

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

Is JavaScript hard to learn? Is JavaScript hard to learn? Apr 03, 2025 am 12:20 AM

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

Can PowerPoint run JavaScript? Can PowerPoint run JavaScript? Apr 01, 2025 pm 05:17 PM

JavaScript can be run in PowerPoint, and can be implemented by calling external JavaScript files or embedding HTML files through VBA. 1. To use VBA to call JavaScript files, you need to enable macros and have VBA programming knowledge. 2. Embed HTML files containing JavaScript, which are simple and easy to use but are subject to security restrictions. Advantages include extended functions and flexibility, while disadvantages involve security, compatibility and complexity. In practice, attention should be paid to security, compatibility, performance and user experience.

See all articles