4차산업혁명의 일꾼/웹개발
2주차 퍼블리싱 개발일지
르무엘
2021. 8. 31. 23:08
// 현재 날짜를 가져온후 format 맞추기
const date = new Date();
// 월( 10월 밑으로는 0을 붙여서 저장 )
const month = ( date.getMonth() + 1 ) < 10 ? '0' + ( date.getMonth() + 1 ) : ( date.getMonth() + 1 );
// 일( 10일 밑으로는 0을 붙여서 저장 )
const day = ( date.getDate() ) < 10 ? '0' + ( date.getDate() ) : ( date.getDate() );
LIST