자바스크립트, 날짜계산, moment.js 자바스크립트로 날짜계산 할때 일일이 스크립트로 구현이 불필요하다고 느낄때 사용하면 편하다. 홈페이지 다운로드 : http://momentjs.com/ Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); // 9월 19일 2014, 11:05:50 오전 moment().format('dddd'); // 금요일 moment().format("MMM Do YY"); // 9월 19일 14 moment().format('YYYY [escaped] YYYY'); // 2014 escaped 2014 moment().format(); // 2014-09-19T11:05:50+09:00 Relative T..