AvailabilityJavaScript 1.0; JScript 1.0; ECMAScript v1 SynopsisDate.UTC(year, month, day, hours, minutes, seconds, ms) Arguments
ReturnsThe millisecond representation of the specified universal time. That is, this method returns the number of milliseconds between midnight GMT on January 1, 1970 and the specified time. DescriptionDate.UTC( ) is a static method; it is invoked through the Date( ) constructor, not through an individual Date object. The arguments to Date.UTC( ) specify a date and time and are understood to be in UTC (Universal Coordinated Time) -- they are in the GMT time zone. The specified UTC time is converted to the millisecond format, which can be used by the Date( ) constructor method and by the Date.setTime( ) method. The Date( ) constructor method can accept date and time arguments identical to those that Date.UTC( ) accepts. The difference is that the Date( ) constructor assumes local time, while Date.UTC( ) assumes universal time (GMT). To create a Date object using a UTC time specification, you can use code like this: d = new Date(Date.UTC(1996, 4, 8, 16, 30)); See AlsoDate, Date.parse( ), Date.setTime( ) |