从 nodejs/javascript 中的本地时间戳字符串获取 utc 偏移值

Get utc offset value from a local timestamp string in nodejs/javascript

我的本地时间戳值是以下格式的字符串: '2020-05-19T15:45:07.2306062+05:30'

如何使用 nodejs/javascript 从这种格式的日期字符串中获取 UTC 偏移值?

请帮忙。提前致谢

使用以下方法获得偏移量:

var trimmedDate = '2020-05-19T20:16:56.2306062+05:30'.slice(0,-6)
var localtimestamp = new Date(trimmedDate)
var difference = new Date()-localtimestamp;
var offset = Math.trunc(difference/(1000*60));