요약(Summary)
일(day)를 리턴
문법(Syntax)
1 | getDate() |
인자(Parameters)
없음
반환값(Return)
number,일
설명(Description)
로컬타임의 일(1~31)을 리턴함.
요일은 getDay를 통해서 구할 수 있다.
예제(Example)
1 2 | var d = new Date(1980,1,3); alert(d.getDate()); // number, 3 |
참고
일(day)를 리턴
1 | getDate() |
없음
number,일
로컬타임의 일(1~31)을 리턴함.
요일은 getDay를 통해서 구할 수 있다.
1 2 | var d = new Date(1980,1,3); alert(d.getDate()); // number, 3 |
등록된 답변이 없습니다.