ÇöÁö½Ã°£À» »ç¿ëÇÏ¿© Date °³Ã¼ÀÇ ÀÏÀÚ°ªÀ» ¹ÝȯÇÑ´Ù.
ÇùÁ¤ ¼¼°è Ç¥ÁؽÃ(UTC)¸¦ »ç¿ëÇÏ¿© ÀÏÀÚ°ªÀ» °¡Á®¿À·Á¸é getUTCDate ¸Þ¼µå¸¦ »ç¿ëÇ϶ó.
<SCRIPT>document.write('Áö±ÝÀº ÇöÁö½Ã°£ '+new Date().getDate()+'ÀÏÀÌ´Ù.');</SCRIPT>
<SCRIPT> var br='<BR>'; // ÁÙ¹Ù²Þ var str=''; // Ãâ·Â ¹®ÀÚ¿ º¯¼ö ¼±¾ð var now=new Date(); // ÇöÀç ½Ã°£À» º¯¼ö¿¡ ÇÒ´ç str+='now=new Date()'+br; // ÇöÀç½Ã°£ º¯¼ö ¼³Á¤ ³»¿ª º¸¿©ÁÜ str+='now.toLocaleString()='+now.toLocaleString()+br+br; // ÇöÀç ½Ã°£ Ãâ·Â str+='now.getDate()='+now.getDate()+br+br; // ÀÏÀÚ°ª Ãâ·Â str+='¿À´ÃÀº: now.getYear()+"³â "+(now.getMonth()+1)+"¿ù "+now.getDate()+"ÀÏ"=' +now.getYear()+'³â '+(now.getMonth()+1)+'¿ù '+now.getDate()+'ÀÏ'+br; document.write(str); // °á°ú ¹®ÀÚ¿ Ãâ·Â </SCRIPT>