home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 25: Programming / pc_actual_25.iso / Javascript / JavaScriptEditor / jse_en28.exe / %MAINDIR% / Tutorial / datetime.js < prev    next >
Encoding:
Text File  |  2001-09-10  |  187 b   |  5 lines

  1.  
  2.   today = new Date()
  3.   document.write("Timeú║ ",today.getHours(),":",today.getMinutes())
  4.   document.write("<br>Dateú║ ", today.getMonth()+1,"/",today.getDate(),"/",today.getYear());
  5.