JS之日期对象Date

发布时间:2023年12月29日

让我为大家介绍一下日期对象吧!
日期对象,用来表示时间的对象

1.获取当前时间

    // 获取当前时间
    let date = new Date()

2.指定时间

    // 指定时间
    let date = new Date("2023-6-1 08:30:30")

日期对象的方法
因为我们日期对象返回的数据我们不能直接使用,所以需要转换为实际开发中常用的格式

方法作用说明
getFullYear()获取年份获取四位年份
getMonth()获取月份取值 0 ~ 11
getDate()获取月份中的每一天不同月份取值也不相同
getDay()获取星期取值 0 ~ 6
getHours()获取小时取值 0 ~ 23
getMinutes()获取分钟取值 0 ~ 59
getSeconds()获取秒取值 0 ~ 59
    // 获取当前时间
    let date = new Date()
    // 使用方法
    // 获取年份
    console.log(date.getFullYear())
    // 获取月份
    console.log(date.getMonth() + 1)
    // 获取日期
    console.log(date.getDate())
    // 获取星期
    console.log(date.getDay())
    // 获取小时
    console.log(date.getHours())
    // 获取分钟
    console.log(date.getMinutes())
    // 获取秒
    console.log(date.getSeconds())

时间戳
获取时间戳的三种方法
1.getTime()
2. +new Date()
3. Date.now()

	let date = new Date()
    // 1.getTime()
    console.log(date.getTime())
    // 2. +new Date()
    console.log(+new Date)
    // 3. Date.now
    console.log(Date.now())

感谢大家的阅读,如有不对的地方,可以向我指出,感谢大家!

文章来源:https://blog.csdn.net/m0_74577714/article/details/135298503
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。