[Javascript] Date 객체와 날짜 및 시간 쉽게 사용하기, moment.js
moment.js는 웹에서 날짜와 시간을 표현하는데 사용됩니다. 사용 1. Format Dates moment().format('MMMM Do YYYY, h:mm:ss a'); // 1월 30일 2023, 4:07:51 오후 moment().format('dddd'); // 월요일 moment().format("MMM Do YY"); // 1월 30일 23 moment().format('YYYY [escaped] YYYY'); // 2023 escaped 2023 moment().format(); // 2023-01-30T16:07:51+09:00 2. Relative Time moment("20111031", "YYYYMMDD").fromNow(); // 11년 전 moment("20120620", "..
Javascript
2022. 6. 20. 11:25