[헤딩금지] intl 헤딩금지 2020-04-29 Web › Enlighten dev, js, react # DateTimeFormat//가장 기본const date = new Date();//기본 로케일, 시간대에 따라 달라짐new Intl.DateTimeFormat().format(date);//로케일 한국시new Intl.DateTimeFormat('ko-KR').format(date);//옵션과 함께const options = { year: '2-digit', hour: '2-digit', minute: '2-digit}new Intl.DateTimeFormat('ko-KR', options).format(date);