时间戳(现在是10位数,17开头)
(用这个) *毫秒时间戳(现在是13位数,1_700_000_000_000

> new Date(1_700_000_000_000)
2023-11-14T22:13:20.000Z

获取当前的毫秒时间戳

JS: +new Date()
Java: long msepoch = System.currentTimeMillis();
Python: import time; time.time()*1000

从毫秒时间戳创建时间对象

JS: new Date(msepoch)