Microsoft® JScript
join Method
See Also
Language Reference 


Description
Converts all elements of an array into a String object and joins them.
Syntax

arrayobj.join( separator )

The separator argument is a String object that is used to separate one element of an array from the next in the resulting String object. If omitted, the array elements are separated with an empty string.

Remarks

The join method returns a String object that contains each element converted to a string and concatenated together. An example of using the join method follows:


var my_array = new Array("Jan 5", 1996, "hey", "my birthday!");
var my_string = my_array.join(", ");
After execution, my_string contains "Jan 5, 1996, hey, my birthday!"


© 1996 by Microsoft Corporation.


Casa de Bender