格式化时区偏移
获取当前设备的时区偏移,并以 UTC±hh:mm 格式返回。
UTC±hh:mm
const timeZone = formatTimeZoneOffset();console.log(timeZone); // 输出类似 "UTC+08:00" 或 "UTC-05:00" Copy
const timeZone = formatTimeZoneOffset();console.log(timeZone); // 输出类似 "UTC+08:00" 或 "UTC-05:00"
格式化后的时区偏移字符串
格式化时区偏移
获取当前设备的时区偏移,并以
UTC±hh:mm
格式返回。Example