ํ์ฌ ๋ ์ง์ ์๊ฐ์ ๊ตฌํด๋ด ์๋ค! 00. new Date() const today = new Date(); console.log(today); new Date()๋ ํ์ฌ ๋ ์ง์ ์๊ฐ์ ๊ฐ์ง๋ ๊ฐ์ฒด๋ฅผ ๋ฆฌํดํฉ๋๋ค๐ 01. ํ์ฌ ์ฐ๋/์/์ผ/์์ผ import * as React from "react"; export default function App() { const today = new Date(); const year = today.getFullYear(); // ๋ ๋ const month = today.getMonth() + 1; // ์ const date = today.getDate(); // ๋ ์ง const day = today.getDay(); // ์์ผ console.log(year + "/" ..