JavaScript(第三章第1课):内部对象--(Date)

本文详细讲解了JavaScript中typeof运算符的应用,包括数字、字符串、布尔值和特殊值的检测,以及如何利用Date对象进行日期获取和格式转换。通过实例演示,介绍了如何构造和解析时间戳,并展示了常用的日期格式化方法。
摘要由CSDN通过智能技术生成

标准对象

typeof 123
'number'
typeof '123'
'string'
typeof true
'boolean'
typeof NaN
'number'
typeof []
'object'
typeof {}
'object'
typeof Math.abs
'function'
typeof undefined
'undefined'

Date基本使用

var now =new Date();
        now.getFullYear();//年
        now.getMonth();//月
        now.getDate();//日
        now.getDay();//星期
        now.getHours();//时
        now.getMinutes();//分
        now.getSeconds();//秒
        now.getMilliseconds();

        now.getTime();//时间戳
结果演示
now.getFullYear();
2022
now.getMonth();
4
now.getDate();
6
now.getDay();
5
now.getHours();
14
 now.getMinutes();
49
now.getSeconds();
13
now.getMilliseconds();
624
now.getTime();
1651819753624

转换

now =new Date(1651819753624)
Fri May 06 2022 14:49:13 GMT+0800 (中国标准时间)

now.toLocaleString();
'2022/5/6 14:49:13'

now.toGMTString();
'Fri, 06 May 2022 06:49:13 GMT'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值