View Single Post
  #10 (permalink)  
Old 05-23-2008, 12:19 AM
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

push(strings) - Strings are placed at the end of the array. This method is not defined so it must be written and included in your code.
Code:
words = new Array("limit","lines","finish")
words.push("complete","In","Out")
The array, words, will be:
Code:
limit, lines, finish, complete, In, Out
__________________
With,
J. Jeyaseelan

Everything Possible
Reply With Quote