자바스크립트에서 new Date() 를 구해서 해야 할 것들이 있다. 예를 들면 현재 시간 기준으로 "몇시간 몇분 전" 으로 표기 해야 한다던지 하는 포맷 말이다. 참으로 귀찮고도 귀찮다. 이런 귀차니즘을 미리 해결해 놓은 라이브러리가 있으니, 바로 moment.js 모먼트다. https://momentjs.com/ Moment.js | Home Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); moment().format('dddd'); moment().format("MMM Do YY"); moment().format('YYYY [escaped] YYYY'); moment().format(); Relative Time moment("20111031",..