일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 참조자료형
- 코딩기초
- useEffect
- 비동기
- redux
- scss
- 사용하는 이유
- Vue3
- CSS
- 코린이
- react-router
- TypeScript
- 리액트
- 코딩공부
- http
- 리덕스
- JavaScript
- html기초
- git
- SasS
- 깃
- 프론트엔드
- React Native
- async
- 타입스크립트
- 코딩독학
- 자바스크립트
- react
- 코딩초보
- 리액트 네이티브
Archives
- Today
- Total
맨 땅에 프론트엔드 개발자 되기
JS toLocaleDateString 을 이용하여 Date 표현 변경하기 본문
728x90
자바스크립트로 날짜를 나타낼 때, Date 함수를 사용하면 된다는 건 알았지만, 그 날짜를 한국식으로 표현할 때 일일이 getFullYear() 나 getMonth() 등을 이용해서 커스터마이징을 해서 사용했었는데, toLocaleDateString() 을 이용하면 아주 간단하게 표현 방법을 변경할 수 있다는 것을 알게 되었다.
그래서 오늘은 이에 관련해서 정리를 해보고자 한다.
JavaScript 로 날짜와 시간 표현하기
우선, 날짜를 가져오려면 아래 코드와 같이 Date 생성자 함수를 호출해주면 된다.
const today = new Date();
console.log(today);
콘솔에 찍힌 모습을 보면 아래와 같이 출력된다.
이 표현을 커스터마이징 하려면 아래와 같이 작성한다.
const today = new Date();
const dateString = today.toLocaleDateString('ko-KR', {
year: 'numeric',
month: 'long',
day: 'numeric'
});
console.log(dateString);
콘솔에는 아래와 같이 나타난다.
더 많은 옵션을 보기 위해 해당 문서로 가서 확인했더니 아래와 같은 옵션들이 있었다.
interface DateTimeFormatOptions {
localeMatcher?: "best fit" | "lookup" | undefined;
weekday?: "long" | "short" | "narrow" | undefined;
era?: "long" | "short" | "narrow" | undefined;
year?: "numeric" | "2-digit" | undefined;
month?: "numeric" | "2-digit" | "long" | "short" | "narrow" | undefined;
day?: "numeric" | "2-digit" | undefined;
hour?: "numeric" | "2-digit" | undefined;
minute?: "numeric" | "2-digit" | undefined;
second?: "numeric" | "2-digit" | undefined;
timeZoneName?: "long" | "short" | undefined;
formatMatcher?: "best fit" | "basic" | undefined;
hour12?: boolean | undefined;
timeZone?: string | undefined;
}
시간도 아래와 같이 표현할 수 있다.
const today = new Date();
const time = today.toLocaleDateString('ko-KR', {
weekday: 'long',
hour: 'numeric',
hour12: true,
minute: 'numeric',
second: 'numeric'
});
console.log(time);
728x90
'코딩 공부 일지 > JavaScript' 카테고리의 다른 글
JavaScript 접속한 기기가 모바일인지 아닌지 확인하는 방법 (0) | 2022.07.08 |
---|---|
lodash throttle과 debounce를 이용해서 함수의 반복 실행 막기 (0) | 2022.06.19 |
TDZ를 아시나요? - 에러 기록 (0) | 2022.03.28 |
전개구문과 얕은 복사 & 깊은 복사 (2) | 2022.03.22 |
JS 동적으로 생성된 요소에 이벤트 바인딩 (2) | 2022.03.21 |