View Single Post
  #8 (permalink)  
Old 05-21-2008, 10:03 PM
Jeyaseelansarc Jeyaseelansarc is offline
D-Web Genius
 
Join Date: Mar 2007
Location: Chennai
Posts: 1,162
Jeyaseelansarc is on a distinguished road
Send a message via AIM to Jeyaseelansarc
Default Re: Manipulating in array

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
__________________
With,
J. Jeyaseelan

Everything Possible
Reply With Quote