A-C > Array.toString

Array.toString

Syntax

myArray.toString();

Arguments

None.

Description

Method; returns a string value representing the elements in the specified Array object. Every element in the array, starting with index 0 and ending with index myArray.length-1, is converted to a concatenated string separated by commas.

Player

Flash 5 or later.

Example

The following example creates myArray and converts it to a string:

myArray = new Array();
myArray[0] = 1;
myArray[1] = 2;
myArray[2] = 3;
myArray[3] = 4;
myArray[4] = 5;
trace(myArray.toString())

Output:

1,2,3,4,5