日期对象getTime()获取时间戳

Posted The Qing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日期对象getTime()获取时间戳相关的知识,希望对你有一定的参考价值。

1.日期对象(时间对象)可以直接使用? 需要手动创建Date对象,Date是一个函数 不是一个内置对象
let d = new Date()//创建了一个当前时间日期对象
console.log(d)//Sun Aug 08 2021 17:57:21 GMT+0800 (中国标准时间)
let d1 = new Date(‘2021/10/01 00:00:00’)//创建一个指定时间 2021年10月1号零点 的日期对象
console.log(d1)//Fri Oct 01 2021 00:00:00 GMT+0800
let d1 = new Date(2021,9,01,00,00,00)
console.log(d1)//Fri Oct 01 2021 00:00:00 GMT+0800
getTime() 获取时间戳 获取距离1970年1月1号的毫秒数
console.log(d.getTime())//1628417984975
console.log(d.getTime()/1000/60/60/24/365)//51.636799702340184
//大家活了多少岁?
2.创建2个时间对象(当前时间,出生时间)
let d1 = new Date()//当前时间对象
let d2 = new Date(‘2001/7/1 00:00:00’)//出生时间对象
let time = d1.getTime()- d2.getTime()//活了多少毫秒
let year = Math.floor(time/1000/60/60/24/365)
console.log(year)//20

以上是关于日期对象getTime()获取时间戳的主要内容,如果未能解决你的问题,请参考以下文章

日期对象getTime()获取时间戳

日期对象getTime()获取时间戳

js如何返回当天零点的时间戳?

js如何返回当天零点的时间戳?

如何从 JS 中的 Y-m-d 日期获取 unix 时间戳?

怎么在java里获取带有毫秒的时间