Temporal.Now.timeZoneId() - JavaScript | MDN
Syntax
js
Temporal.Now.timeZoneId()
Parameters
None.
Return value
A valid time zone identifier representing the system's current time zone. The returned time zone identifier is never a non-primary time zone identifier (alias). For example, it would always return "Asia/Kolkata" (new name) instead of "Asia/Calcutta" (old name). For more information, see time zones and offsets.
If the implementation does not support time zones, the method always returns "UTC".
Examples
Getting the system's current time zone
js
console.log(Temporal.Now.timeZoneId()); // e.g.: "America/New_York"
Specifications
| Specification |
|---|
| Temporal # sec-temporal.now.timezoneid |