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.

date.toString()

Convert a Date to a String.

Signature

toString() => String

Description

Converts the calling Date to an ISO 8601 String.

Parameters

None

Return value

Type Description

String

String representation of the calling Date.

Examples

let d = Date("2099-10-20")
d.toString()
"2099-10-20"
\