Quartz Composer JavaScript Reference © Cybero Designs  

parse

Type Method
Format Date.parse (string date)
Commentary
1 January 1970 at returns 0 milliseconds from the time. Mon Oct 03 2005 17:32:55」The date string "Mon Oct 03 2005 17:32:55" to specify the string. 2005/10/3 not handled correctly and to specify a string formatted as.
Sample code - QC 2 JavaScript
n = Date.parse ( "Mon Oct 03 2005 17:32:55");
outputs [0] = n.toString ();
Sample code - QC 3 JavaScript
function (__string outputNumber) main (__number time)
{
var result = new Object();
n = Date.parse("Mon Oct 03 2005 17:32:55");
result.outputNumber = n.toString();
return result;
}

Return to the Start Page