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

reverse() - Puts array elements in reverse order.
Code:
words = new Array("limit","lines","finish","complete","In","Out")
words.reverse()
The array, words, will be:
Code:
Out, In, complete, finish, lines, limit
__________________
With,
J. Jeyaseelan

Everything Possible
Reply With Quote