DAY 16
The Date Object
Ø
The Date object is a
datatype built into the JavaScript language.
Ø
Date objects are created
with the new Date( ).
Ø Once a Date object is created, a number of methods
allow you to operate on it. Most methods simply allow you to get and set the
year, month, day, hour, minute, second, and millisecond fields of the object,
using either local time or UTC (universal, or GMT) time.
Ø The ECMAScript standard requires the Date object to be
able to represent any date and time, to millisecond precision, within 100
million days before or after 1/1/1970. This is a range of plus or minus 273,785
years, so JavaScript can represent date and time till the year 275755.
Ø The following syntaxes are used to create a Date
object using Date() constructor.
newDate()
newDate(milliseconds)
newDate(datestring)
newDate(year,month,date[,hour,minute,second,millisecond])
Note − Parameters in the brackets are always optional.
Here is a description of
the parameters −
·No Argument − With no arguments, the Date() constructor
creates a Date object set to the current date and time.
·milliseconds − When one numeric argument is passed, it is
taken as the internal numeric representation of the date in milliseconds, as
returned by the getTime() method. For example, passing the argument 5000
creates a date that represents five seconds past midnight on 1/1/70.
·datestring − When one string argument is passed, it is a
string representation of a date, in the format accepted by the Date.parse()method.
·7 agruments − To use the last form of the constructor shown
above. Here is a description of each argument:
·year − Integer value representing the year. For
compatibility (in order to avoid the Y2K problem), you should always specify
the year in full; use 1998, rather than 98.
·month − Integer value representing the month,
beginning with 0 for January to 11 for December.
·date − Integer value representing the day of the
month.
·hour − Integer value representing the hour of the day
(24-hour scale).
·minute − Integer value representing the minute segment
of a time reading.
·second − Integer value representing the second segment
of a time reading.
·millisecond − Integer value representing the millisecond segment
of a time reading.
Date Properties
Ø The list of the properties of the Date object along
with their description are:-
Property
|
Description
|
Specifies the function that creates
an object's prototype.
|
|
The prototype property allows you to
add properties and methods to an object
|
Date Methods
Ø The list of the methods used with Date and their description are:-
Method
|
Description
|
Returns today's date and time
|
|
Returns the day of the month for the
specified date according to local time.
|
|
Returns the day of the week for the
specified date according to local time.
|
|
Returns the year of the specified
date according to local time.
|
|
Returns the hour in the specified
date according to local time.
|
|
Returns the milliseconds in the
specified date according to local time.
|
|
Returns the minutes in the specified
date according to local time.
|
|
Returns the month in the specified
date according to local time.
|
|
Returns the seconds in the specified
date according to local time.
|
|
Returns the numeric value of the
specified date as the number of milliseconds since January 1, 1970, 00:00:00
UTC.
|
|
Returns the time-zone offset in
minutes for the current locale.
|
|
Returns the day (date) of the month
in the specified date according to universal time.
|
|
Returns the day of the week in the
specified date according to universal time.
|
|
Returns the year in the specified
date according to universal time.
|
|
Returns the hours in the specified
date according to universal time.
|
|
Returns the milliseconds in the
specified date according to universal time.
|
|
Returns the minutes in the specified
date according to universal time.
|
|
Returns the month in the specified
date according to universal time.
|
|
Returns the seconds in the specified
date according to universal time.
|
|
Deprecated - Returns the year in the specified date according to
local time. Use getFullYear instead.
|
|
Sets the day of the month for a
specified date according to local time.
|
|
Sets the full year for a specified
date according to local time.
|
|
Sets the hours for a specified date
according to local time.
|
|
Sets the milliseconds for a
specified date according to local time.
|
|
Sets the minutes for a specified
date according to local time.
|
|
Sets the month for a specified date
according to local time.
|
|
Sets the seconds for a specified
date according to local time.
|
|
Sets the Date object to the time represented
by a number of milliseconds since January 1, 1970, 00:00:00 UTC.
|
|
Sets the day of the month for a
specified date according to universal time.
|
|
Sets the full year for a specified
date according to universal time.
|
|
Sets the hour for a specified date
according to universal time.
|
|
Sets the milliseconds for a
specified date according to universal time.
|
|
Sets the minutes for a specified
date according to universal time.
|
|
Sets the month for a specified date
according to universal time.
|
|
Sets the seconds for a specified
date according to universal time.
|
|
Deprecated - Sets the year for a specified date according
to local time. Use setFullYear instead.
|
|
Returns the "date" portion
of the Date as a human-readable string.
|
|
Deprecated - Converts a date to a string, using the
Internet GMT conventions. Use toUTCString instead.
|
|
Returns the "date" portion
of the Date as a string, using the current locale's conventions.
|
|
Converts a date to a string, using a
format string.
|
|
Converts a date to a string, using
the current locale's conventions.
|
|
Returns the "time" portion
of the Date as a string, using the current locale's conventions.
|
|
Returns a string representing the
source for an equivalent Date object; you can use this value to create a new
object.
|
|
Returns a string representing the
specified Date object.
|
|
Returns the "time" portion
of the Date as a human-readable string.
|
|
Converts a date to a string, using
the universal time convention.
|
|
Returns the primitive value of a
Date object.
|
Date Static Methods
Ø In addition to the many instance methods listed
previously, the Date object also defines two static methods. These methods are
invoked through the Date() constructor itself.
Method
|
Description
|
Parses a string representation of a
date and time and returns the internal millisecond representation of that
date.
|
|
Returns the millisecond
representation of the specified UTC date and time.
|
No comments:
Post a Comment
Give your valuable feedback