Get the timezone string
JavaScript
const getTimezone = () => Intl.DateTimeFormat().resolvedOptions().timeZone
TypeScript
const getTimezone = (): string => Intl.DateTimeFormat().resolvedOptions().timeZone
Example
getTimezone() // 'Asia/Saigon'
const getTimezone = () => Intl.DateTimeFormat().resolvedOptions().timeZone
const getTimezone = (): string => Intl.DateTimeFormat().resolvedOptions().timeZone
getTimezone() // 'Asia/Saigon'