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.

array.toString()

Convert an Array to a String.

Signature

toString() => String

Description

Converts an Array to a String representation.

The calling Array isn’t changed.

Parameters

None

Return value

Type Description

String

String representation of the Array.

Examples

[1, 2].toString()
"[1, 2]"
\