JavaScript method: XMLDate.getISOTime()

This method returns a string containing the time portion of date/time object in ISO format.

Syntax

XMLDate.getISOTime();

Arguments

There are no arguments for this method.

Return values

A string or null.

The method returns a string containing the ISO time of a date/time object or null if the conversion fails.

Example

This example does the following:

  • Creates a new XMLDate object containing today's date
  • Converts the XMLDate object to an ISO time then displays the result
print( "Creating XMLDate object..." );
var d = new XMLDate( new Date() );
print( "The value of the new XMLDate object is: " + d );
print( "Converting the XMLDate to ISO format..." );
var ISO = d.getISOTime();
print( "The ISO time is: " + ISO );