Page 160 - DCAP408_WEB_PROGRAMMING
P. 160

Web Programming




                    Notes                        var  myDate=new  Date();
                                                 myDate.setFullYear(2010,0,14);
                                                 var  today  =  new  Date();
                                                 if  (myDate>today)
                                                 {
                                                 alert(“Today  is  before  14th  January  2010”);
                                                 }
                                                 else
                                                 {
                                                 alert(“Today  is  after  14th  January  2010”);
                                                 }

                                                             Table 5.4: Date Object Methods

                                      Method               Description

                                      getDate()            Returns the day of the month (from 1-31)
                                      getDay()             Returns the day of the week (from 0-6)
                                      getFullYear()        Returns the year (four digits)
                                      getHours()           Returns the hour (from 0-23)

                                      getMilliseconds()    Returns the milliseconds (from  0-999)
                                      getMinutes()         Returns the  minutes (from  0-59)
                                      getMonth()           Returns the month (from  0-11)
                                      getSeconds()         Returns the  seconds (from 0-59)

                                      getTime()            Returns the number of milliseconds since midnight Jan 1, 1970
                                      getTimezoneOffset()  Returns the time difference between GMT and local time, in minutes
                                      getUTCDate()         Returns the day of the month, according to universal time (from 1-31)
                                      getUTCDay()          Returns the day of the week, according to universal time (from 0-6)

                                      getUTCFullYear()     Returns the year, according to universal time (four digits)
                                      getUTCHours()        Returns the hour, according to universal time (from 0-23)
                                      getUTCMilliseconds()  Returns the milliseconds, according to universal time (from 0-999)
                                      getUTCMinutes()      Returns the  minutes, according to universal time (from 0-59)

                                      getUTCMonth()        Returns the month, according to universal time (from 0-11)
                                      getUTCSeconds()      Returns the seconds, according to universal time (from  0-59)
                                      getYear()            Deprecated.  Use the  getFullYear() method  instead
                                      parse()              Parses a date string and returns the number of milliseconds since
                                                           midnight of  January 1,  1970
                                      setDate()            Sets the day of the month (from 1-31)
                                      setFullYear()        Sets the year (four digits)

                                      setHours()           Sets the hour (from 0-23)
                                                                                                         Contd...


          154                               LOVELY PROFESSIONAL UNIVERSITY
   155   156   157   158   159   160   161   162   163   164   165