The Fauna service will be ending on May 30, 2025.

For more information on the service wind down, see our announcement and the Fauna Service End-of-Life FAQ.

time.toString()

Convert a Time to a String.

Signature

toString() => String

Description

Converts the calling Time to an ISO 8601 String.

Parameters

None

Return value

Type Description

String

String representation of the calling Time.

Examples

let t = Time("2099-10-20T21:15:09.890729Z")
t.toString()
"2099-10-20T21:15:09.890729Z"
\