# JavaScript 获取时间戳

常用的 JavaScript 获取时间戳方法:


var timestamp1 = Date.parse(new Date());
// 输出: 1580139751000

var timestamp2 = new Date().valueOf();
// 输出: 1580139844049

var timestamp3 = new Date().getTime();
// 输出: 1580139865123

var timestamp4 = +new Date();
// 输出: 1580139899450

timestamp1 方法精确到秒,其它方法精确到毫秒。