get timezone from browser javascript code example
Example 1: get browser timezone javascript
Intl.DateTimeFormat().resolvedOptions().timeZone
Example 2: time zone browser javascript
fetch("https://worldtimeapi.org/api/ip")
.then(response => response.json())
.then(data => console.log(data.timezone,data.datetime,data.dst));