8일차 / 컴포넌트 재사용

김혜진·2022년 3월 23일
0

7일차 코드리뷰

event target // 태그 전체
event.target.value // 입력한 값 가져오기
event.target.id // id 값 가져오기

new Date()
Wed Mar 23 2022 10:44:33 GMT+0900 (한국 표준시)

const aaa = new Date()
undefined

aaa.getFullYear()
2022

aaa.getMonth()
2
=> 3월인데 2월로 나옴

aaa.getDate()
23

aaa.getMonth()+1
3
=> Month만 1을 추가해주어야 한다.

게시글 등록, 상세, 수정 페이지 props

profile
알고 쓰자!

0개의 댓글