join(delimiter) - Puts all elements in the array into a string, separating each element with the specified delimiter.
Code:
words = new Array("limit","lines","finish","complete","In","Out")
var jwords = words.join(";") The value of the string jwords is:
Code:
limit;lines;finish;complete;In;Out