toUTCString, méthode
Mise à jour : novembre 2007
Retourne une date convertie en chaîne selon le temps universel (UTC, Universal Time Coordinated).
function toUTCString() : String
Notes
La méthode toUTCString retourne un objet String contenant la date exprimée selon le temps universel (UTC), dans un format facile à lire.
Exemple
L'exemple ci-dessous illustre l'utilisation de la méthode toUTCString.
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.
}