Skip to main content

Documentation Index

Fetch the complete documentation index at: https://kk-83bff226.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Signature

path=null start=null
arrToString(arr: any[]): string

Parameters

  • arr: any[] - The array to be converted.

Returns

string - The input array converted to a string, with elements separated by commas.

Example

path=null start=null
const result = arrToString(['hello', 'world'])
console.log(result) // 'hello,world'

Source

Defined in array.ts:36