<html>
<script language="JavaScript">
<!--
//Create a new Date object using all arguments.
theDate1 = new Date(2002,9,29,20,5,8,10);
//Create a new Date object using just milliseconds.
theDate2 = new Date(theDate1.getTime());
//Create a new Date object using a string.
theDate3 = new Date(theDate1.toString());
//Display all the date objects.
document.write("theDate1-> ",theDate1.toString());
document.write("<br>theDate2-> ",theDate2.toString());
document.write("<br>theDate3-> ",theDate3.toString());
-->
</script>
</html>
|