Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns a date converted to a string using Universal Coordinated Time (UTC).
Syntax
dateObj.toUTCString()
Remarks
The required dateObj reference is any Date object.
The toUTCString method returns a String object that contains the date formatted using UTC convention in a convenient, easily read form.
The following example illustrates the use of the toUTCString method.
function toUTCStrDemo(){
var d, s; //Declare variables.
d = new Date(); //Create Date object.
s = "Current setting is ";
s += d.toUTCString(); //Convert to UTC string.
return(s); //Return UTC string.
}
Requirements
Applies To: Date Object (Windows Scripting - JScript)