react현재날짜1 React 현재 날짜 출력하기 const today = new Date(); // 현재 날짜를 가져옵니다. const formattedDate = `${today.getFullYear()}년 ${today.getMonth() + 1}월 ${today.getDate()}일`; // 원하는 형식으로 날짜를 설정합니다. 1. new Date() -> 함수를 이용해, today에 담는다. return ( {formattedDate} ); 2. 날짜포맷을 맞추어, formattedDate 변수에 담아 { formattedDate } -> 출력한다. 2023. 12. 15. 이전 1 다음