Skip to content

Instantly share code, notes, and snippets.

@ryanmorr
Last active January 26, 2024 16:52
Show Gist options
  • Save ryanmorr/7ae4e40fc6937b891e5f4d44110f3a8e to your computer and use it in GitHub Desktop.
Save ryanmorr/7ae4e40fc6937b891e5f4d44110f3a8e to your computer and use it in GitHub Desktop.
Get the timezone of the client
// Get the IANA timezone
const timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
// My result
console.log(timezone); //=> "America/Toronto"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment