JavaScript - 날짜, 시간 포맷 (Date format)

날짜, 시간을 원하는 형식으로 변환하여 출력하는 방법을 소개합니다.

1. 현재 시간, 날짜 출력

Date는 Date() 또는 new Date()로 생성할 수 있으며, console.log()로 출력하면 아래와 같은 형식의 문자열로 출력됩니다.

let date1 = Date();
console.log(date1);

let date2 = new Date();
console.log(date2);

Output:

Sun Feb 05 2023 19:20:23 GMT+0900 (Korean Standard Time)
2023-02-05T10:20:23.536Z

2. 특정 날짜 포맷으로 변환

yyyy-mm-dd 같은 형식으로 출력하려면, Date 객체에서 날짜 정보를 가져와서 원하는 포맷으로 변환해야 합니다.

Date 객체에서 아래와 같은 메소드를 사용하여 날짜 정보를 가져올 수 있습니다.

  • getFullYear(): 년도 정보를 리턴
  • getMonth() : 월 정보를 0~11 사이의 값으로 리턴
  • getDate() : 날짜 정보를 1~31 사이의 값으로 리턴

3. "yyyy-mm-dd" 포맷으로 변환

아래와 같이 날짜 정보를 가져와서 yyyy-mm-dd 형식의 문자열로 변환할 수 있습니다.

const date = new Date();

const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + date.getDate()).slice(-2);
const dateStr = year + '-' + month + '-' + day;

console.log(dateStr);

Output:

2023-02-05

4. "yyyy-mm-dd hh:mm:ss" 포맷으로 변환

날짜, 시간 정보를 가져와서 yyyy-mm-dd hh:mm:ss 형식으로 변환할 수 있습니다.

Date에서 시간 정보는 아래와 같은 메소드로 가져올 수 있습니다.

  • getHours()
  • getMinutes()
  • getSeconds()
const date = new Date();

const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + date.getDate()).slice(-2);
const hours = ('0' + date.getHours()).slice(-2);
const minutes = ('0' + date.getMinutes()).slice(-2);
const seconds = ('0' + date.getSeconds()).slice(-2);

const dateStr = year + '-' + month + '-' + day + ' ' + hours + ':' + minutes + ':' + seconds;
console.log(dateStr);

Output:

2023-02-05 19:29:39

5. 다양한 형식으로 변환

const date = new Date();

const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + date.getDate()).slice(-2);

let format1 = `${month}/${day}/${year}`;
console.log(format1);

let format2 = `${day}/${month}/${year}`;
console.log(format2);

let format3 = `${month}-${day}-${year}`;
console.log(format3);

let format4 = `${day}-${month}-${year}`;
console.log(format4);

let format5 = `${year}${month}${day}`;
console.log(format5);

Output:

02/05/2023
05/02/2023
02-05-2023
05-02-2023
2023년 02월 05일
Loading script...

Related Posts

codechachaCopyright ©2019 codechacha