Type Method
Format array . toString ()
Commentary
Converts a string array element. Returns a string representing the array and its elements.The Array object overrides the toString method of Object.
Sample code - QC 2 JavaScript
myAry = new Array (12,34,56);
outputs [0] = myAry.toString ();
Sample code - QC 3 JavaScript
var myArrayB = new Array(12,24,36,48,60);
function (__string outputArray) main ()
{
var result = new Object();
result.outputArray = myArrayB.toString();
return result;
}