js毫秒级时间戳转为日期
时间: 2023-09-19 11:06:01 浏览: 168
可以使用JavaScript的`Date`对象来将毫秒级时间戳转换为日期。你可以使用`new Date()`构造函数,并将时间戳作为参数传递给它。以下是一个示例代码:
```javascript
const timestamp = 1628208000000; // 毫秒级时间戳
const date = new Date(timestamp);
console.log(date); // 输出日期对象
```
在上面的代码中,`timestamp`是一个毫秒级时间戳。通过将其作为参数传递给`Date`构造函数,我们创建了一个日期对象`date`。最后,我们通过`console.log()`输出日期对象。
如果你想将日期格式化为特定的字符串,可以使用`Date`对象的方法,例如`getFullYear()`、`getMonth()`、`getDate()`等来获取年、月、日等信息,并按照需要拼接成字符串。以下是一个示例代码:
```javascript
const timestamp = 1628208000000; // 毫秒级时间戳
const date = new Date(timestamp);
const year = date.getFullYear();
const month = date.getMonth() + 1; // 月份从0开始,因此需要加1
const day = date.getDate();
const formattedDate = year + '-' + month + '-' + day;
console.log(formattedDate); // 输出格式化后的日期字符串
```
在上面的代码中,我们获取了年、月、日,并使用`-`符号将它们拼接在一起,最后输出格式化后的日期字符串。你可以根据需要调整格式化的方式。
阅读全文