var timestamp=Date.parse(new Date()); 1571557999000精确到秒
var timestamp=Date.parse(new Date());
1571557999000精确到秒
var timestamp=(new Date()).valueOf(); 1571558032671精确到毫秒
var timestamp=(new Date()).valueOf();
1571558032671精确到毫秒
var timestamp=new Date().getTime() 1571558062259精确到毫秒
var timestamp=new Date().getTime()
1571558062259精确到毫秒