如何将日期转换为时间戳

时间:2017-06-05 10:47:42

标签: javascript node.js

我想将日期转换为时间戳

我有两种不同格式的日期Wed May 31 2017 15:33:47 GMT+0530 (India Standard Time)2017-05-31T10:03:47.592Z。我想要 将其转换为1379426880000等时间戳。

这是我的代码。

var noOfDays = 5;
var targetDate = new Date();

targetDate.setDate(targetDate.getDate() - noOfDays);
console.log("targetDate date is " + targetDate); //Wed May 31 2017 15:33:47 GMT+0530 (India Standard Time)
console.log(JSON.stringify(targetDate)); // "2017-05-31T10:03:47.592Z"

1 个答案:

答案 0 :(得分:2)

使用此代码获取时间戳。

targetDate.getTime()