Get the timezone string
JavaScript
const getTimezone = () => Intl.DateTimeFormat().resolvedOptions().timeZoneTypeScript
const getTimezone = (): string => Intl.DateTimeFormat().resolvedOptions().timeZoneExample
getTimezone() // 'Asia/Saigon'const getTimezone = () => Intl.DateTimeFormat().resolvedOptions().timeZoneconst getTimezone = (): string => Intl.DateTimeFormat().resolvedOptions().timeZonegetTimezone() // 'Asia/Saigon'