标准对象
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'
推荐阅读
- 前端|VUE + Echart 5.3.2 graph关系图代码
- 微信小程序|uniapp 微信小程序 下拉刷新
- 浏览器工作原理与实践(八)
- JavaScript class类的基本使用方法你知道吗
- Vue|Vue脚手架(vue-cli)安装与SPA项目创建
- JavaWeb|JavaScript(8)深入理解作用域
- 前端|初识jQuery
- 史上最全的CoffeeScript面试题和答案合集
- 史上最全JavaScript面试题和答案大合集