요약(Summary)
사용자의 문화권에 맞는 시간표기법으로 객체의 시간을 리턴
문법(Syntax)
1 | toLocaleDateString() |
인자(Parameters)
없음
반환값(Return)
string, 운영체제에 설정된 문화권에 맞는 형태로 시간을 표시
설명(Description)
운영체제마다 문화권에 맞은 표기법(format)을 가지고 있는데 예를들면,
한국에서는 '1995년 12월 18일 월요일'가 미국에서는 '04/15/98'이고 영국에서는 '15.04.98'이다.
예제(Example)
1 2 3 4 | today = new Date(1980,0,3,1,28,35) alert(today.toLocaleDateString()); // 1980년 1월 3일 목요일 alert(today.toLocaleTimeString()); // 오전 1:28:35 alert(today.toLocaleString()); // 1980년 1월 3일 목요일 오전 1:28:35 |