- 프론트엔드 공부 38일차 -등록된 게시글 목록을 DB로부터 가져오고 게시글 목록에서 게시글 상세 정보로 가기 위한 페이지를 만들어 볼 것이다. export const getDate = (date) => { const _date = new Date(date); const yyyy = _date.getFullYear(); const mm = String(_date.getMonth() + 1).padStart(2, "0"); const dd = String(_date.getDate()).padStart(2, "0"); return `${yyyy}.${mm}.${dd}`;}; DB에 저장된 날짜를 우리가 보는 날짜 형식으로 바꿔주는 코드