Skip to main content

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