티스토리 뷰
/**
* NOW 1483670765299 (milliseconds)
* @returns {number}
*/
function getNow(){
return new Date().getTime();
}
/**
* UTC 2017-01-06T02:46:05.299Z
* @returns {string}
*/
function getUTCString(){
return new Date().toISOString();
}
/**
* LOCAL 1/6/2017, 11:46:05 AM
* @returns {string}
*/
function getLocalTimeString(){
var now = new Date();
return now.toLocaleString();
}
'Programming > Web' 카테고리의 다른 글
Web Server / WAS (Apache / Tomcat) (0) | 2017.01.19 |
---|---|
[node.js/express] static files (css, html, images) 처리 (0) | 2017.01.18 |
JWT (Json Web Token) (0) | 2017.01.05 |
[Node.js/Express] interceptor 구현하기 (0) | 2017.01.04 |
[node.js/postgresql]하나의 파일을 이용해 DB connection 관리하기. (0) | 2016.12.30 |
댓글