contents   index   previous   next



Date toUTCString()

syntax:

date.toUTCString()

return:

string - representation of the UTC date and time data in a Date object.

 

description:

Converts the UTC date and time information in a Date object to a string in a form such as: "Mon May 1 09:24:38 2000"

 

see:

Date toDateString(), Date toLocaleString(), Date toTimeString()

 

example:

var d = new Date();

var s = d.toString();

 

 


Date valueOf()