Menu

Post image 1
Post image 2
1 / 2
0

Handling Time Zones in Browser Extensions: Lessons from Building a World Clock

DEV Community·Weather Clock Dash·29 days ago
#WB8Pgiq3
Reading 0:00
15s threshold

Handling Time Zones in Browser Extensions: Lessons from Building a World Clock When I added world clock support to my Firefox new tab extension, I thought it would be simple — just use JavaScript's Intl API and call it a day. Turns out, there are several gotchas worth knowing about. The JavaScript Intl.DateTimeFormat API Modern browsers have excellent built-in time zone support: function getTimeInZone ( timezone ) { return new Intl . DateTimeFormat ( ' en-US ' , { timeZone : timezone , hour : ' 2-digit ' , minute : ' 2-digit ' , second : ' 2-digit ' , hour12 : false }). format ( new Date ()); } console . log ( getTimeInZone ( ' America/New_York ' )); // 14:32:07 console . log ( getTimeInZone ( ' Europe/London ' )); // 19:32:07 console . log ( getTimeInZone ( ' Asia/Tokyo ' )); // 04:32:07 Enter fullscreen mode Exit fullscreen mode No external libraries needed. No time zone database to maintain. Just a string identifier from the IANA time zone database.…

Continue reading — create a free account

Join HashtagPLUS to read full articles, follow hashtags, vote, and join the conversation.

Read More