제목 : 예제. 자바스크립트 내장 객체 : Date객체
<SCRIPT LANGUAGE="JavaScript">
//자바스크립트 내장 객체 : Date객체
//[1] Date객체의 인스턴스(실체)를 생성
var today;
today = new Date();//Data객체 참조
document.write(today.getYear() + "년 ");//년
document.write(
(today.getMonth()+1) + "월 ");//월0~11월, +1해줘야 함.
document.write(
today.getDate() + "일 ");//일
document.write(
today.getDay() + "요일 ");//요일0에서 6요일, 알아서...
document.write(today.getHours() + "시 ");//시
document.write(today.getMinutes() + "분 ");//분
document.write(today.getSeconds() + "초 ");//초
</SCRIPT>