> 日期的常用写法特此介绍
[TOC]
## 初始化
~~~
new Date(); // 默认当前时间
new Date(value); // 时间戳参数。毫秒,可使用new Date().getTime()获取时间戳
new Date(dateString); // 时间字符串
~~~
## 格式化
~~~
var date = new Date();
console.log(formatDate(date))
// 日期格式化封装
function formatDate(date){
return date.getFullYear()+'-'+(date.getMonth()+1).toString()+"-"+date.getDate()+' '+date.getHours()+":"+date.getMinutes()+":"+date.getSeconds()
}
~~~