Create Date objects using various arguments in the Date() constructor : Date constructors : Date JAVASCRIPT TUTORIALS


JAVASCRIPT TUTORIALS » Date » Date constructors »

 

Create Date objects using various arguments in the Date() constructor

















<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>







HTML code for linking to this page:

Follow Navioo On Twitter

JAVASCRIPT TUTORIALS

 Navioo Date
» Date constructors