Javascript hàm lấy múi giờ (timezone) hiện tại

Hàm javascript helper (với typescript) ngắn gọn giúp lấy múi giờ (timezone) hiện tại chỉ với 1 dòng code.

#JavaScript version

const getTimezone = () => Intl.DateTimeFormat().resolvedOptions().timeZone;

#TypeScript version

const getTimezone = (): string => Intl.DateTimeFormat().resolvedOptions().timeZone;

#Ví dụ

getTimezone(); // 'Asia/Saigon'