例如我有这个:
d = new Date(2013,04,20,14,56,10)
Mon May 20 2013 14:56:10 GMT+0800 (SGT)
dt = d.getTime() /1000
1369032970
现在, timezoneOffset 值为
d.getTimezoneOffset()*60
-28800
所以如果我减少它,我会得到
dt -= d.getTimezoneOffset()*60
1369061770
我的问题是,1369032970
我的本地时间戳和1369061770
UTC 时间戳是什么?
我可以有把握地说,由 timezoneOffset 减少的任何当前时间戳都是 UTC 时间戳吗?