JavaScript Date日期对象
大家好,今天我们分享JavaScript Date日期对象
在JavaScript中,Date对象用来表示日期和时间。
在这之前,我们先讲一下标准对象
打开浏览器
typeof 123
'number'
typeof '123'
'string'
typeof true
'boolean'
typeof NaN
'number'
typeof []
'object'
typeof {}
'object'
typeof Math.abs
'function'
typeof undefined
'undefined'
new Date()
Sat Feb 12 2022 17:43:12 GMT+0800 (中国标准时间)
截图:
共有 0 条评论