본문 바로가기
IT/Front-End

React 현재 날짜 출력하기

by 피리부는 공대생 2023. 12. 15.
const today = new Date();
// 현재 날짜를 가져옵니다.

const formattedDate = `${today.getFullYear()}년 ${today.getMonth() + 1}월 ${today.getDate()}일`;
// 원하는 형식으로 날짜를 설정합니다.

1. new Date() -> 함수를 이용해, today에 담는다. 

 return (
        <div>
            <Dday>{formattedDate}</Dday>
        </div>
    );

2. 날짜포맷을 맞추어, formattedDate 변수에 담아 { formattedDate  } -> 출력한다. 

댓글