Microsoft® JScript™
Date Object
Language Reference |
Version 1 |

See Also                  Methods                  Properties


Description
Enables basic storage and retrieval of dates and times.
Syntax
var newDateObj = new Date()
var newDateObj = new Date(year, month, day)
var newDateObj = new Date(year, month, day, hours, minutes, seconds)
var newDateObj = new Date("month day, year hours:minutes:seconds")

Use the following syntax to call a method:

newDateObj.methodName(parameters)

Remarks
When creating a Date object, the first method creates a Date object with the current date and time. The second method sets the values of hours, minutes, and seconds to zero. If hours, minutes, or seconds are omitted in the fourth form, their value is set to zero.

Dates prior to midnight, January 1, 1970 cannot be represented.

The Date object has two static methods that are called without creating a Date object: parse and UTC. An example of their syntax follows.

Date.parse(datestring)


© 1997 Microsoft Corporation. All rights reserved.