Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS DSA TYPESCRIPT ANGULAR ANGULARJS GIT POSTGRESQL MONGODB ASP AI R GO KOTLIN SWIFT SASS VUE GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE INTRO TO PROGRAMMING INTRO TO HTML & CSS BASH RUST TOOLS

Basic JavaScript

JS Tutorial JS Introduction JS Where To JS Output

JS Syntax

JS Syntax JS Statements JS Comments JS Variables JS Let JS Const JS Types

JS Operators

JS Operators

JS If Else

JS If Conditions

JS Loops

JS Loops

JS Strings

JS Strings

JS Numbers

JS Numbers

JS Functions

JS Functions

JS Objects

JS Objects

JS Scope

JS Scope

JS Dates

JS Dates

JS Temporal

JS Temporal  New

JS Arrays

JS Arrays

JS Sets

JS Sets

JS Maps

JS Maps

JS Iterations

JS Loops

JS Math

JS Math

JS RegExp

JS RegExp

JS DataTypes

JS Data Types

JS Errors

JS Errors

JS Debugging

JS Debugging

JS Conventions

JS Style Guide

JS Reference

JS Statements

JS Projects

JS Projects New

JS Versions

JS 2026

JS HTML

JS HTML DOM JS Events

JS Advanced

JS Functions JS Objects JS Classes JS Asynchronous JS Modules JS Meta & Proxy JS Typed Arrays JS DOM Navigation JS Windows JS Web APIs JS AJAX JS JSON JS jQuery JS Graphics JS Examples JS Reference


JavaScript ZonedDateTime

Handle Time Zones Correctly

The Temporal.ZonedDateTime object represents a date and time with a time zone.

It is the safest way to handle international date and time calculations.

It prevents common DST bugs and makes time zone conversions clear and predictable.

What You Will Learn:

  • How to use JavaScript Temporal.ZonedDateTime
  • How to handle time zones correctly
  • How to add and subtract date
  • How to avoid DST (Daylight Saving Time) bugs
  • How to convert between time zones safely

Why ZonedDateTime Is Important

Time zones and daylight saving time (DST) can cause serious bugs when using JavaScript Date.

ZonedDateTime solves this by always storing the time zone together with the date and time.

A Temporal.ZonedDateTime is a timezone and calendar-aware date/time object that represents a real time event from the perspective of a particular region on Earth.

The Temporal.ZonedDateTime object is optimized for cases that require a time zone, DST-safe arithmetic and interoperability with an RFC 5545 calendar.

Example: December 7th, 1995 at 3:24 AM in US Pacific time (in Gregorian calendar).


Create a ZonedDateTime

Example

const zonedDate = Temporal.ZonedDateTime.from({
  timeZone: 'Europe/Oslo',
  year: 2026,
  month: 5,
  day: 17,
  hour: 14,
  minute: 30,
  second: 0,
  millisecond: 0,
  microsecond: 0,
  nanosecond: 500
});
Try it Yourself »

You can also create a ZonedDateTime from a string that includes a time zone.

Example

const zdt = Temporal.ZonedDateTime.from
("2026-02-17T14:30:00[Europe/Oslo]");
Try it Yourself »

The time zone name is written inside square brackets.


Get Current Date and Time with Time Zone

The Temporal.Now.zonedDateTimeISO() method returns your system's current date, time, and time zone as a Temporal.ZonedDateTime object.

Example

Get the current date and time from your system's time zone:

const now = Temporal.Now.zonedDateTimeISO();
Try it Yourself »

The current time is returned in ISO 8601 format.


The ISO 8601 Format

  • 2026-03-02: The calendar date (Year-Month-Day).
  • T10:36:00: The time of day (T-Hour:Minute:Second).
  • +01:00: The offset from UTC (Coordinated Universal Time).
  • [Europe/Oslo]: The IANA time zone name, which is the system's local time zone in this case.

Convert Between Time Zones

You can convert a ZonedDateTime to another time zone.

Example

const oslo = Temporal.ZonedDateTime.from
("2026-05-17T14:30:00+01:00[Europe/Oslo]");

const newYork = oslo.withTimeZone("America/New_York");
Try it Yourself »

The exact moment stays the same, but the local clock time changes.


Add Time Safely (DST Safe)

Adding days across a daylight saving change can break with Date.

ZonedDateTime handles this correctly.

Example

const start = Temporal.ZonedDateTime.from
("2026-03-29T00:00:00+01:00[Europe/Oslo]");

const nextDay = start.add({ days: 1 });
Try it Yourself »

Temporal adjusts automatically if a DST change happens.


JavaScript Temporal since()

The since() method calculates the duration between two temporal dates.

Syntax

t1.since(t2, options)

Meaning:

At time t1, how much time has passed since time t2?

Example: ZonedDateTime

const start = Temporal.ZonedDateTime.from(
"2026-02-17T09:00:00+01:00[Europe/Oslo]");

const end = Temporal.ZonedDateTime.from(
"2026-02-17T17:30:00+01:00[Europe/Oslo]");

const duration = end.since(start);
Try it Yourself »

The since() method returns a Temporal.Duration Object representing the elapsed time.

The duration is positive if the "other" date is in the past.

The duration is negative if the "other" date is in the future.


The width() Method

The width() method creates a new zoned date-time with specified field(s) replaced.

Example

// Create a Temporal object
const date = Temporal.PlainDate.from("2026-05-17");

// Replace month and day
const customDate = date.with({ month:12, day:25 });
Try it Yourself »

Convert from Instant

An Instant represents a UTC moment.

You can convert it to a ZonedDateTime in a specific time zone.

Example

const instant = Temporal.Now.instant();

const zoned = instant.toZonedDateTimeISO("Europe/Oslo");
Try it Yourself »


When to Use ZonedDateTime

  • International applications.

  • Booking systems.

  • Flight or travel systems.

  • Applications that must handle DST correctly.

  • Any system where time zones matter.


ZonedDateTime vs PlainDateTime

Type Includes Time Zone Use Case
PlainDateTime No Local scheduling without conversion
ZonedDateTime Yes International or DST-aware systems

Temporal ZonedDateTime Methods

ConstructingDescription
new Creates a ZonedDateTime object
from() Creates a ZonedDateTime object from an object or a string
Converting
getTimeZone
Transition()
Returns a ZonedDateTime object representing the closest instant after or before this instant
toInstant() Returns a Instant object representing this date-time
toPlainDate() Returns a PlainDate object representing this date-time
toPlainDateTime() Returns a PlainDateTime object representing this date-time
toPlainTime() Returns a PlainTime object representing this date-time
startOfDay() Returns a ZonedDateTime representing the first instant of this date
Updating
with() Returns a ZonedDateTime with specified fields modified
withCalendar() Returns a ZonedDateTime with a different calendar system
withPlainTime() Returns a ZonedDateTime the time part replaced by a new time
withTimeZone() Returns a ZonedDateTime representing this date in a new time zone
Arithmetic
add() Returns a ZonedDateTime with a duration added
subtract() Returns a ZonedDateTime with a duration subtracted
round() Returns a ZonedDateTime rounded to a given unit
Comparing
compare() Returns -1, 0, or 1 from comparing two dates
equals() Returns true if two ZonedDateTime objects are identical
since() Returns the difference from another date
until() Returns the difference until another date
Formatting
toJSON() Returns an ISO 8601 string for JSON serialization
toLocaleString() Returns a language-sensitive representation of the date
toString() Returns an ISO 8601 string representation
valueOf() Throws a TypeError (prevents temporals from being converted to primitives)

Temporal ZonedDateTime Properties

PropertyDescription
calendarIDCalendar system identifier ("iso8601")
dayThe day as an integer (1-31)
dayOfWeekThe day of the week as an integer (1 = Monday)
dayOfYearThe ordinal day of the year
daysInMonthThe total number of days in that month
daysInWeekThe total number of days in that week
daysInYearThe total number of days in that year
epochMillisecondsNumber of milliseconds since Unix epoch
epochNanosecondsNumber of nanoseconds since Unix epoch
eraThe era name of the calendar, if applicable ("gregory")
eraYearThe year within the era, if applicable
hourThe hour as an integer (0-23)
hoursInDayHours in this day in this time zone(0-25)
inLeapYearA boolean indicating if the date falls in a leap year
microsecondThe microsecond as an integer (0-999)
millisecondThe millisecond as an integer (0-999)
minuteThe minute as an integer (0-59)
monthThe month as an integer (1-12)
monthCodeA calendar-specific string code for the month ("M01")
monthsInYearThe total number of months in that year
nanosecondThe nanosecond as an integer (0-999)
offsetOffset used to interpret this instant (+HH:mm:ss.sssssssss)
offsetNanosecondsOffset used to interpret this instant in nanoseconds
secondThe second as an integer (0-59)
timeZoneIdTime zone identifier used to interpret this instant
weekOfYearThe week number within the year
yearThe year as an integer
yearOfWeekThe year that the week belongs to

Display All Properties

const zoned = Temporal.ZonedDateTime.from("2026-05-17T14:30:00[Europe/Oslo]");
Try it Yourself »

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookies and privacy policy.

Copyright 1999-2026 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.

-->